@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Source+Sans+3:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --color-bg-1: #F0F9FF;
  --color-bg-2: #FEF3F0;
  --color-bg-3: #FDF8F5;
  --color-card: #FFFCF8;
  --color-text: #1B4965;
  --color-text-soft: #5A7D8C;
  --color-accent: #E07A5F;
  --color-accent-soft: #8FBC8F;
  --color-accent-tertiary: #D4A574;
  --color-border: #C9DDE4;
  --color-decor-peach: #FFDAB9;
  --color-decor-aqua: #B0E0E6;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-decor: 'Libre Baskerville', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: linear-gradient(135deg, #F0F9FF 0%, #FEF3F0 50%, #FDF8F5 100%);
  color: #1B4965;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

strong, p {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: #1B4965;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

h1 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 32px;
}

h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

p {
  color: #5A7D8C;
  font-size: 15px;
  line-height: 1.75;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(240, 249, 255, 0.5);
}

::-webkit-scrollbar-thumb {
  background: rgba(224, 122, 95, 0.4);
  border-radius: 24px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(224, 122, 95, 0.7);
}

.glow-torch {
  position: fixed;
  pointer-events: none;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 73, 101, 0.15) 0%, transparent 70%);
  box-shadow: 0 0 20px rgba(27, 73, 101, 0.2), 0 0 40px rgba(224, 122, 95, 0.1);
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: none;
}

.glow-torch.active {
  width: 160px;
  height: 160px;
  box-shadow: 0 0 30px rgba(27, 73, 101, 0.3), 0 0 60px rgba(224, 122, 95, 0.15);
}

.glow-torch.cta-active {
  background: radial-gradient(circle, rgba(224, 122, 95, 0.25) 0%, transparent 70%);
  box-shadow: 0 0 30px rgba(224, 122, 95, 0.4), 0 0 60px rgba(224, 122, 95, 0.2);
}

@media (min-width: 1024px) {
  .glow-torch {
    display: block;
  }
}

.floating-panel {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 260px;
  background: rgba(255, 252, 248, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid #C9DDE4;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(27, 73, 101, 0.1);
  padding: 28px 18px;
  z-index: 1000;
  display: none;
  max-height: 90vh;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .floating-panel {
    display: block;
  }
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #C9DDE4;
  margin-bottom: 22px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #C9DDE4;
  background: linear-gradient(135deg, #E07A5F, #1B4965);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFCF8;
  font-size: 24px;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

.brand-domain {
  font-family: 'Libre Baskerville', serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #1B4965;
  margin-bottom: 4px;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-style: italic;
  color: #1B4965;
  line-height: 1.3;
}

.brand-name span {
  display: block;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.side-nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: #1B4965;
  padding: 10px 14px;
  border-radius: 14px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  display: block;
  white-space: nowrap;
}

.side-nav a:hover,
.side-nav a.is-active {
  background: rgba(224, 122, 95, 0.12);
  color: #E07A5F;
  border-left-color: #E07A5F;
}

.panel-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #E07A5F, #D4A574);
  color: #FFFCF8;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224, 122, 95, 0.4);
}

.mobile-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 252, 248, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid #C9DDE4;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1100;
}

@media (min-width: 1024px) {
  .mobile-bar {
    display: none;
  }
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #C9DDE4;
  background: linear-gradient(135deg, #E07A5F, #1B4965);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFCF8;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

.mobile-domain {
  font-family: 'Libre Baskerville', serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #1B4965;
}

.mobile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-style: italic;
  color: #1B4965;
}

.burger-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 252, 248, 0.95);
  border: 2px solid #C9DDE4;
  border-radius: 10px;
  color: #1B4965;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 0;
}

.burger-btn:focus {
  outline: 2px solid #E07A5F;
  outline-offset: 2px;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.98), rgba(254, 243, 240, 0.98));
  backdrop-filter: blur(16px);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 24px;
  border-right: 2px solid #C9DDE4;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer .brand-block {
  border-bottom: 1px solid #C9DDE4;
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #C9DDE4;
  border-radius: 10px;
  color: #1B4965;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #1B4965;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.drawer-nav a .num {
  font-family: 'Libre Baskerville', serif;
  font-size: 12px;
  font-style: normal;
  color: #E07A5F;
  min-width: 28px;
}

.drawer-nav a:hover,
.drawer-nav a.is-active {
  background: rgba(224, 122, 95, 0.12);
  color: #E07A5F;
  border-left-color: #E07A5F;
}

.drawer-cta {
  margin-top: 22px;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #E07A5F, #D4A574);
  color: #FFFCF8;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 28px;
  white-space: nowrap;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(27, 73, 101, 0.5);
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

main {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  main {
    padding-left: 300px;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 60px 80px;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    text-align: left;
    margin: 0;
    max-width: 55%;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 18px;
  padding: 8px 18px;
  background: rgba(224, 122, 95, 0.1);
  border-radius: 28px;
}

.hero-title {
  font-size: 44px;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  color: #1B4965;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 72px;
  }
}

.hero-title em {
  font-style: italic;
  color: #E07A5F;
  font-weight: 500;
}

.hero-subline {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #5A7D8C;
  font-style: italic;
  margin-bottom: 14px;
}

.hero-divider {
  height: 3px;
  background: linear-gradient(90deg, #E07A5F, #8FBC8F, transparent);
  border-radius: 50%;
  opacity: 0.5;
  width: 120px;
  margin: 24px auto;
}

@media (min-width: 1024px) {
  .hero-divider {
    margin: 24px 0;
  }
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 600px) {
  .hero-cta-row {
    flex-direction: row;
    align-items: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 54px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, #E07A5F, #D4A574);
  color: #FFFCF8;
  box-shadow: 0 10px 32px rgba(224, 122, 95, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(224, 122, 95, 0.5);
}

.btn-secondary {
  background: rgba(255, 252, 248, 0.95);
  color: #1B4965;
  border: 3px solid #E07A5F;
  padding: 15px 33px;
}

.btn-secondary:hover {
  background: #E07A5F;
  color: #FFFCF8;
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(224, 122, 95, 0.2);
  top: -150px;
  right: -150px;
  animation: drift1 28s ease-in-out infinite;
}

.blob-2 {
  width: 380px;
  height: 380px;
  background: rgba(27, 73, 101, 0.15);
  bottom: -100px;
  left: -100px;
  animation: drift2 32s ease-in-out infinite;
}

.blob-3 {
  width: 240px;
  height: 240px;
  background: rgba(143, 188, 143, 0.18);
  top: 40%;
  left: 50%;
  animation: drift3 24s ease-in-out infinite;
}

.blob-4 {
  width: 600px;
  height: 600px;
  background: rgba(212, 165, 116, 0.12);
  bottom: -200px;
  right: 20%;
  animation: drift4 40s ease-in-out infinite;
}

@media (max-width: 768px) {
  .blob {
    display: none;
  }
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -40px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 50px); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

@keyframes drift4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-80px, -60px); }
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-divider path {
  stroke: #C9DDE4;
  stroke-width: 2;
  fill: none;
  opacity: 0.25;
  animation: waveMove 12s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-30px); }
}

section.block {
  position: relative;
  padding: 80px 24px;
}

@media (min-width: 1024px) {
  section.block {
    padding: 120px 80px;
  }
}

.block-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Libre Baskerville', serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 14px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 14px;
  color: #1B4965;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 48px;
  }
}

.section-title em {
  font-style: italic;
  color: #E07A5F;
  font-weight: 500;
}

.section-lead {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  font-style: italic;
  color: #5A7D8C;
  letter-spacing: 0.04em;
  max-width: 640px;
  margin: 0 0 50px;
}

.section-head-center {
  text-align: center;
}

.section-head-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.services-split {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .services-split {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
  }
}

.service-visual {
  position: relative;
  border-radius: 0 0 0 40px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.15), rgba(27, 73, 101, 0.15));
  border: 2px solid #C9DDE4;
}

@media (min-width: 1024px) {
  .service-visual {
    position: sticky;
    top: 100px;
    min-height: 540px;
  }
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: rgba(255, 252, 248, 0.7);
  border: 1px solid #C9DDE4;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(27, 73, 101, 0.06);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.service-card:hover {
  transform: scale(1.03);
  border-color: #E07A5F;
  border-width: 2px;
  padding: 23px;
  box-shadow: 0 20px 56px rgba(224, 122, 95, 0.18);
  z-index: 15;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(224, 122, 95, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E07A5F;
  flex-shrink: 0;
  font-size: 26px;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #1B4965;
  margin-bottom: 6px;
}

.service-info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.service-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  font-style: italic;
  color: #E07A5F;
  font-weight: 700;
}

.service-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: #1B4965;
  text-decoration: underline;
  text-decoration-color: #E07A5F;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #E07A5F;
}

.timeline-section {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 0;
}

@media (min-width: 768px) {
  .timeline {
    padding-left: 100px;
  }
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 3px;
  background: linear-gradient(180deg, #E07A5F, #8FBC8F);
  border-radius: 50%;
  z-index: 0;
}

@media (min-width: 768px) {
  .timeline::before {
    left: 32px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-node {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: linear-gradient(135deg, #E07A5F, #D4A574);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFCF8;
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item:hover .timeline-node {
  transform: scale(1.2);
}

.timeline-item:last-child .timeline-node {
  background: linear-gradient(135deg, #8FBC8F, #6B9D6B);
}

.timeline-card {
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid #C9DDE4;
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 0 8px 24px rgba(27, 73, 101, 0.06);
  flex: 1;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.timeline-item:hover .timeline-card {
  z-index: 15;
  transform: scale(1.02);
  border-color: #E07A5F;
  border-width: 2px;
  padding: 21px 25px;
  box-shadow: 0 20px 56px rgba(224, 122, 95, 0.18);
}

.timeline-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #1B4965;
  margin-bottom: 8px;
  font-style: italic;
}

.timeline-card p {
  font-size: 14px;
  margin: 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
}

.bento-cell {
  background: rgba(255, 252, 248, 0.7);
  border: 1px solid #C9DDE4;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(27, 73, 101, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

.bento-cell:hover {
  transform: scale(1.04);
  border-color: #E07A5F;
  border-width: 2px;
  padding: 23px;
  z-index: 15;
  box-shadow: 0 20px 56px rgba(224, 122, 95, 0.18);
}

.bento-cell.has-image {
  padding: 0;
}

.bento-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 73, 101, 0.85), rgba(27, 73, 101, 0.2));
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFCF8;
}

.bento-overlay h3,
.bento-overlay p,
.bento-overlay .bento-tag {
  color: #FFFCF8;
}

.bento-tag {
  font-family: 'Libre Baskerville', serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFDAB9;
  margin-bottom: 8px;
}

.bento-cell h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #1B4965;
  margin-bottom: 6px;
}

.bento-cell p {
  font-size: 13px;
  margin: 0;
}

.bento-large {
  grid-column: span 1;
  grid-row: span 1;
}

@media (min-width: 768px) {
  .bento-large.b2x2 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-large.b2x1 {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-medium.b1x2 {
    grid-column: span 1;
    grid-row: span 2;
  }
  .bento-accent {
    background: linear-gradient(135deg, #E07A5F, #D4A574) !important;
    color: #FFFCF8 !important;
  }
  .bento-accent h3,
  .bento-accent p {
    color: #FFFCF8 !important;
  }
}

.about-reveal {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .about-reveal {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
  }
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-fact {
  padding: 22px 16px;
  border-left: 4px solid transparent;
  border-radius: 0 14px 14px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-fact:hover,
.about-fact.is-active {
  background: rgba(224, 122, 95, 0.1);
  border-left-color: #E07A5F;
}

.about-fact-tag {
  font-family: 'Libre Baskerville', serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 4px;
  display: block;
}

.about-fact h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #1B4965;
  margin-bottom: 4px;
  font-style: italic;
  line-height: 1.3;
}

.about-preview {
  display: none;
  background: rgba(255, 252, 248, 0.92);
  border: 2px solid #C9DDE4;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(27, 73, 101, 0.08);
  align-items: center;
  gap: 24px;
}

.about-preview.is-shown {
  display: flex;
  flex-direction: column;
}

@media (min-width: 600px) {
  .about-preview.is-shown {
    flex-direction: row;
  }
}

.about-preview img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  border-radius: 20px;
  border: 2px solid #C9DDE4;
  object-fit: cover;
}

.about-preview-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: #1B4965;
  margin-bottom: 10px;
  font-style: italic;
}

.about-preview-text p {
  font-size: 14px;
  margin: 0;
}

.stacking-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stack-card {
  background: rgba(255, 252, 248, 0.85);
  border: 1px solid #C9DDE4;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 36px rgba(27, 73, 101, 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stack-card:hover {
  transform: scale(1.05);
  z-index: 20;
  border-color: #E07A5F;
  border-width: 2px;
  padding: 31px;
  box-shadow: 0 20px 56px rgba(224, 122, 95, 0.18);
}

.stack-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(224, 122, 95, 0.12), transparent 60%), radial-gradient(circle at 20% 80%, rgba(27, 73, 101, 0.1), transparent 60%);
  pointer-events: none;
}

.stack-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 600;
  color: #E07A5F;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.stack-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #1B4965;
  margin-bottom: 10px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.stack-card p {
  font-size: 14px;
  position: relative;
  z-index: 1;
  margin: 0;
}

.team-canvas {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  min-height: auto;
}

@media (min-width: 768px) {
  .team-canvas {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.team-card {
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid #C9DDE4;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(27, 73, 101, 0.08);
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: grab;
}

.team-card:hover {
  transform: scale(1.04);
  z-index: 15;
  border-color: #E07A5F;
  border-left-width: 3px;
  box-shadow: 0 20px 56px rgba(224, 122, 95, 0.18);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.team-info {
  padding: 18px 22px 22px;
}

.team-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #1B4965;
  margin-bottom: 4px;
  font-style: italic;
}

.team-role {
  font-family: 'Libre Baskerville', serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E07A5F;
  display: block;
  margin-bottom: 6px;
}

.team-exp {
  font-size: 13px;
  color: #5A7D8C;
}

.reviews-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .reviews-wrap {
    padding: 0 80px;
  }
}

.reviews-viewport {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 30px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid #C9DDE4;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 12px 36px rgba(27, 73, 101, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  z-index: 1;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.review-card:hover {
  transform: scale(1.03);
  z-index: 20;
  border-color: #E07A5F;
  border-width: 2px;
  padding: 31px;
  box-shadow: 0 20px 56px rgba(224, 122, 95, 0.18);
}

.review-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(27, 73, 101, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.review-stars {
  color: #E07A5F;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: #1B4965;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  font-family: 'Libre Baskerville', serif;
  font-size: 12px;
  color: #5A7D8C;
  font-style: italic;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.review-arrow {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E07A5F, #D4A574);
  color: #FFFCF8;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
  transition: transform 0.3s ease;
}

.review-arrow:hover {
  transform: translateY(-2px);
}

.review-arrow:focus {
  outline: 2px solid #1B4965;
  outline-offset: 2px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid #C9DDE4;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.faq-item:hover {
  z-index: 15;
  background: #F0F9FF;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #1B4965;
  text-align: left;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(224, 122, 95, 0.15);
  color: #E07A5F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(143, 188, 143, 0.2);
  color: #8FBC8F;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 26px 24px;
  color: #5A7D8C;
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  padding: 0;
}

.contact-split {
  display: flex;
  flex-direction: column;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid #C9DDE4;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 73, 101, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-split {
    display: grid;
    grid-template-columns: 55% 45%;
  }
}

.contact-form-side {
  background: rgba(255, 252, 248, 0.95);
  padding: 48px 36px;
  border-radius: 0 0 0 40px;
}

@media (min-width: 1024px) {
  .contact-form-side {
    padding: 64px;
  }
}

.contact-form-side h2 {
  font-size: 36px;
  color: #1B4965;
  margin-bottom: 10px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: 'Libre Baskerville', serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1B4965;
  font-style: italic;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 2px solid #C9DDE4;
  padding: 10px 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: #1B4965;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #5A7D8C;
  opacity: 0.7;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: #E07A5F;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:invalid:not(:placeholder-shown) {
  border-bottom-color: #E07A5F;
}

.form-submit {
  margin-top: 12px;
  background: linear-gradient(135deg, #E07A5F, #D4A574);
  color: #FFFCF8;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  padding: 22px 48px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(224, 122, 95, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  min-height: 60px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(224, 122, 95, 0.5);
}

.form-status {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(143, 188, 143, 0.18);
  border: 1px solid #8FBC8F;
  color: #1B4965;
  font-size: 14px;
  display: none;
}

.form-status.is-shown {
  display: block;
}

.contact-info-side {
  background: linear-gradient(135deg, #1B4965, #2C5F7D);
  color: #FFFCF8;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 0;
}

@media (min-width: 1024px) {
  .contact-info-side {
    padding: 64px;
  }
}

.contact-info-side::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.2), transparent 70%);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.contact-info-side::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(143, 188, 143, 0.15), transparent 70%);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
  pointer-events: none;
}

.contact-info-side h2 {
  color: #FFFCF8;
  font-size: 40px;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.contact-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #E07A5F;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 18px;
  font-style: italic;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .contact-phone {
    font-size: 44px;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.contact-info-list li {
  color: #FFFCF8;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-info-list li .ico {
  color: #FFDAB9;
  font-size: 16px;
  margin-top: 2px;
}

.contact-info-list li strong {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 13px;
  color: #B0E0E6;
  display: block;
  margin-bottom: 2px;
}

.mini-map {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, rgba(255, 252, 248, 0.1), rgba(255, 252, 248, 0.04));
  border: 1px solid rgba(255, 252, 248, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.pin {
  width: 36px;
  height: 36px;
  background: #E07A5F;
  color: #FFFCF8;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.5);
  position: relative;
  z-index: 1;
}

.pin::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #FFFCF8;
  border-radius: 50%;
  position: absolute;
  top: 6px;
}

.mini-map-text {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-family: 'Libre Baskerville', serif;
  font-size: 11px;
  font-style: italic;
  color: rgba(255, 252, 248, 0.8);
}

.thanks-block {
  text-align: center;
  padding: 120px 24px;
  max-width: 720px;
  margin: 0 auto;
}

.thanks-block h1 {
  font-size: 48px;
  color: #1B4965;
  margin-bottom: 18px;
}

.thanks-block h1 em {
  font-style: italic;
  color: #E07A5F;
}

.thanks-block p {
  font-size: 16px;
  margin-bottom: 28px;
}

.thanks-mark {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #8FBC8F, #6B9D6B);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFCF8;
  font-size: 38px;
  box-shadow: 0 12px 36px rgba(143, 188, 143, 0.4);
}

.legal-page {
  padding: 120px 24px 60px;
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .legal-page {
    padding: 140px 80px 80px;
  }
}

.legal-page h1 {
  font-size: 40px;
  color: #1B4965;
  margin-bottom: 14px;
}

.legal-page .legal-lead {
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  font-style: italic;
  color: #5A7D8C;
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 24px;
  color: #1B4965;
  margin-top: 32px;
  margin-bottom: 12px;
  font-style: italic;
}

.legal-page p {
  font-size: 14px;
  margin-bottom: 14px;
}

.legal-page ul {
  margin-left: 20px;
  margin-bottom: 14px;
}

.legal-page ul li {
  font-size: 14px;
  color: #5A7D8C;
  list-style: disc;
  margin-bottom: 6px;
  line-height: 1.7;
}

.page-hero {
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 140px 80px 70px;
  }
}

.page-hero h1 {
  font-size: 44px;
  color: #1B4965;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 56px;
  }
}

.page-hero .lead {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  font-style: italic;
  color: #5A7D8C;
  max-width: 640px;
  margin: 0 auto;
}

.site-footer {
  background: linear-gradient(135deg, #1B4965, #2C5F7D);
  color: #FFFCF8;
  padding: 70px 24px 36px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 90px 80px 40px;
  }
}

.site-footer::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.15), transparent 70%);
  border-radius: 50%;
  top: -120px;
  left: -80px;
  pointer-events: none;
  animation: drift1 35s ease-in-out infinite;
}

.site-footer::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(143, 188, 143, 0.13), transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  right: -60px;
  pointer-events: none;
  animation: drift2 35s ease-in-out infinite;
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E07A5F, #D4A574, #8FBC8F, #E07A5F);
  border-radius: 0 0 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 252, 248, 0.12);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E07A5F, #1B4965);
  border: 2px solid #C9DDE4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFCF8;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-domain {
  font-family: 'Libre Baskerville', serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #FFDAB9;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-style: italic;
  color: #FFFCF8;
}

.footer-desc {
  color: rgba(255, 252, 248, 0.78);
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
}

.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFDAB9;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: rgba(255, 252, 248, 0.85);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #E07A5F;
}

.footer-contact-line {
  font-size: 13px;
  color: rgba(255, 252, 248, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-contact-line .ico {
  color: #FFDAB9;
  font-size: 14px;
}

.footer-contact-line strong {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: #B0E0E6;
  display: block;
  margin-bottom: 2px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright {
  font-size: 13px;
  color: rgba(255, 252, 248, 0.7);
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.legal-links a {
  font-size: 12px;
  color: rgba(255, 252, 248, 0.78);
  transition: color 0.3s ease;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
}

.legal-links a:hover {
  color: #E07A5F;
}

.legal-links .dot {
  color: rgba(255, 252, 248, 0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: rgba(255, 252, 248, 0.97);
  backdrop-filter: blur(16px);
  border: 2px solid #C9DDE4;
  border-radius: 22px;
  padding: 22px 22px 18px;
  z-index: 9999;
  box-shadow: 0 16px 50px rgba(27, 73, 101, 0.18);
}

@media (min-width: 768px) {
  .cookie-banner {
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 420px;
  }
}

.cookie-banner h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #1B4965;
  margin-bottom: 6px;
  font-style: italic;
}

.cookie-banner p {
  font-size: 13px;
  color: #5A7D8C;
  margin-bottom: 14px;
}

.cookie-banner p a {
  color: #E07A5F;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.cookie-btns button {
  flex: 1;
  padding: 12px 18px;
  border-radius: 22px;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.cookie-accept {
  background: linear-gradient(135deg, #E07A5F, #D4A574);
  color: #FFFCF8;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
}

.cookie-decline {
  background: transparent;
  color: #1B4965;
  border: 2px solid #C9DDE4;
}

.cookie-decline:hover {
  background: rgba(27, 73, 101, 0.06);
}

.cookie-types {
  font-size: 11px;
  color: #5A7D8C;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cookie-types span {
  background: rgba(27, 73, 101, 0.06);
  padding: 4px 8px;
  border-radius: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.07s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.21s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.35s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 0.42s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 0.49s; }

.cta-banner {
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.12), rgba(143, 188, 143, 0.12));
  border: 2px solid #E07A5F;
  border-radius: 32px;
  padding: 40px 24px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 60px;
  }
}

.cta-banner h2 {
  font-size: 30px;
  color: #1B4965;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .cta-banner h2 {
    font-size: 40px;
  }
}

.cta-banner p {
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto 22px;
}

.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bullet-list li {
  font-size: 14px;
  color: #5A7D8C;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.bullet-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 2px;
  color: #E07A5F;
  font-size: 12px;
}

.split-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 768px) {
  .split-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .split-cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.split-card {
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid #C9DDE4;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 36px rgba(27, 73, 101, 0.08);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.split-card:hover {
  transform: scale(1.03);
  border-color: #E07A5F;
  border-width: 2px;
  padding: 25px;
  z-index: 15;
  box-shadow: 0 20px 56px rgba(224, 122, 95, 0.18);
}

.split-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #1B4965;
  margin-bottom: 10px;
  font-style: italic;
}

.detail-hero {
  padding: 110px 24px 50px;
}

@media (min-width: 1024px) {
  .detail-hero {
    padding: 130px 80px 60px;
  }
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 1024px) {
  .detail-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
  }
}

.detail-hero-img {
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid #C9DDE4;
  box-shadow: 0 18px 50px rgba(27, 73, 101, 0.12);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.15), rgba(27, 73, 101, 0.15));
}

.detail-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-tag {
  display: inline-block;
  background: rgba(224, 122, 95, 0.15);
  color: #E07A5F;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1B4965;
  color: #FFFCF8;
  padding: 8px 14px;
  z-index: 10000;
  font-size: 13px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid #E07A5F;
  outline-offset: 3px;
}

::selection {
  background: rgba(224, 122, 95, 0.25);
  color: #1B4965;
}