:root {
  --ink: #1b1b18;
  --charcoal: #262522;
  --gold: #b48a2a;
  --gold-dark: #946f21;
  --ivory: #fbf7f2;
  --sand: #f2eadf;
  --mist: #e6eceb;
  --sage: #4d6f6d;
  --sea: #2f5856;
  --accent: #c6922e;
  --danger: #9b2d2d;
  --shadow: 0 16px 50px rgba(27, 27, 24, 0.12);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1200px;
  --section-pad: 90px;
  --section-pad-sm: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/pattern.svg");
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

main,
header,
footer,
section {
  position: relative;
  z-index: 1;
}

.topbar {
  background: rgba(27, 27, 24, 0.92);
  color: #fff;
  font-size: 0.9rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  opacity: 0.9;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 242, 0.9);
  border-bottom: 1px solid rgba(27, 27, 24, 0.08);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 18px;
}

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

.brand-logo {
  width: auto;
  height: 48px;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-color: var(--gold);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(27, 27, 24, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1f1e1a 0%, #2c2a24 100%);
  color: #fdf8f1;
  border: 1px solid rgba(180, 138, 42, 0.4);
  box-shadow: 0 12px 28px rgba(27, 27, 24, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(27, 27, 24, 0.28);
  border-color: rgba(180, 138, 42, 0.7);
}

.btn-outline {
  border-color: rgba(27, 27, 24, 0.28);
  background: rgba(255, 255, 255, 0.65);
  color: var(--charcoal);
}

.btn-outline:hover,
.btn-outline:focus {
  border-color: var(--gold);
  background: rgba(180, 138, 42, 0.12);
}

.btn-arrow {
  display: inline-flex;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1;
}

.hero {
  padding: 80px 0 40px;
}

.hero.hero-simple {
  padding: 70px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 26px;
  color: rgba(27, 27, 24, 0.82);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 27, 24, 0.08);
}

.hero-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hero-card ul {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, rgba(180, 138, 42, 0.2), rgba(47, 88, 86, 0.15));
  border: 1px solid rgba(27, 27, 24, 0.08);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: rgba(27, 27, 24, 0.85);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(27, 27, 24, 0.05);
  border-bottom: 1px solid rgba(27, 27, 24, 0.05);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-lede {
  max-width: 720px;
  color: rgba(27, 27, 24, 0.75);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.story-text p + p {
  margin-top: 16px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-step {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(27, 27, 24, 0.08);
}

.timeline-step span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.icon-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 27, 24, 0.08);
}

.icon-card img {
  width: 40px;
  height: 40px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.callout {
  background: rgba(47, 88, 86, 0.08);
  border-left: 4px solid var(--sea);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1px solid rgba(27, 27, 24, 0.08);
}

.news-meta {
  font-size: 0.85rem;
  color: rgba(27, 27, 24, 0.6);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 88, 86, 0.12);
  color: var(--sea);
  font-size: 0.8rem;
  font-weight: 600;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(27, 27, 24, 0.08);
  box-shadow: 0 10px 30px rgba(27, 27, 24, 0.08);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: rgba(27, 27, 24, 0.78);
}

.contact-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(180, 138, 42, 0.4);
  text-underline-offset: 3px;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-note {
  margin-top: 16px;
  color: rgba(27, 27, 24, 0.7);
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card p {
  color: rgba(27, 27, 24, 0.75);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

.image-frame {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 27, 24, 0.08);
  box-shadow: 0 10px 28px rgba(27, 27, 24, 0.08);
  padding: 16px;
}

.image-frame img {
  border-radius: var(--radius-md);
  background: var(--sand);
}

.image-frame figcaption {
  font-size: 0.85rem;
  color: rgba(27, 27, 24, 0.65);
  margin-top: 10px;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sea);
  background: rgba(47, 88, 86, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 4px solid var(--gold);
}

.step span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.team-card {
  display: grid;
  gap: 14px;
}

.team-card img {
  border-radius: var(--radius-md);
  height: 220px;
  object-fit: cover;
}

.pricing {
  display: grid;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(27, 27, 24, 0.2);
  padding-bottom: 10px;
}

.price-row strong {
  font-weight: 600;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq details {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid rgba(27, 27, 24, 0.08);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.contact-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(27, 27, 24, 0.08);
}

.contact-panel a {
  color: var(--sea);
  font-weight: 600;
}

.footer {
  padding: 40px 0;
  background: #1f1f1c;
  color: rgba(255, 255, 255, 0.8);
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer small {
  opacity: 0.6;
}

.mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 30;
  display: none;
}

.service-hero {
  padding: 70px 0 30px;
}

.service-hero .hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
}

.service-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.meta-tag {
  background: rgba(180, 138, 42, 0.14);
  color: #5a4718;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-body {
  display: grid;
  gap: 26px;
}

.service-body ul {
  list-style: disc;
  padding-left: 20px;
  color: rgba(27, 27, 24, 0.75);
}

.notice {
  background: rgba(155, 45, 45, 0.08);
  border-left: 4px solid var(--danger);
  padding: 16px;
  border-radius: var(--radius-sm);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-width: 700px) {
  .header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .section {
    padding: var(--section-pad-sm) 0;
  }

  .hero {
    padding: 60px 0 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.caption {
  font-size: 0.85rem;
  color: rgba(27, 27, 24, 0.6);
  margin-top: 12px;
}

.list {
  list-style: disc;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

.prose {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(27, 27, 24, 0.08);
  box-shadow: 0 12px 28px rgba(27, 27, 24, 0.08);
}

.prose h2,
.prose h3 {
  font-family: "Cormorant Garamond", serif;
  margin-top: 24px;
}

.prose p {
  margin: 12px 0;
}

.prose ul,
.prose ol {
  margin: 12px 0 16px;
  padding-left: 1.2rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li + li {
  margin-top: 6px;
}

.prose img {
  border-radius: var(--radius-md);
  background: var(--sand);
  margin: 14px 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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