:root {
  --pearl: #F9F6F4;
  --blush: #E8CFCB;
  --gold: #D4AF7A;
  --gold-deep: #B8955F;
  --olive: #7A8B7A;
  --olive-deep: #5F6E5F;
  --ink: #3A3532;
  --ink-soft: #6B635E;
  --ink-muted: #8F8680;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Josefin Sans', 'Segoe UI', sans-serif;
  --shadow-soft: 0 8px 40px rgba(58, 53, 50, 0.08);
  --shadow-lift: 0 16px 48px rgba(58, 53, 50, 0.12);
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 84px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 0.5rem);
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--pearl);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

em {
  font-style: italic;
  color: var(--olive-deep);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(249, 246, 244, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(249, 246, 244, 0.96);
  border-bottom-color: rgba(212, 175, 122, 0.22);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 1002;
}

.logo-link img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-desktop a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.35rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--ink);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
  margin-inline: auto;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  z-index: 999;
  background: linear-gradient(165deg, var(--pearl) 0%, var(--blush) 100%);
  padding: 2.5rem 1.75rem 3rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

body.menu-open .site-header {
  background: rgba(249, 246, 244, 0.98);
  box-shadow: none;
  border-bottom-color: rgba(212, 175, 122, 0.2);
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mobile a {
  display: block;
  padding: 1.15rem 0;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(58, 53, 50, 0.1);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--gold-deep);
}

.nav-mobile-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
}

/* Buttons */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.9rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.25s ease;
}

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

.btn-primary {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}

.btn-primary:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(58, 53, 50, 0.28);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--pearl);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 3rem) 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58, 53, 50, 0.18) 0%, rgba(58, 53, 50, 0.55) 100%),
    linear-gradient(90deg, rgba(58, 53, 50, 0.45) 0%, rgba(58, 53, 50, 0.08) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--white);
}

.hero-content .eyebrow {
  color: var(--blush);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero-content .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-content .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  overflow: hidden;
}

.page-hero .hero-bg img {
  animation: none;
  transform: scale(1.02);
}

.page-hero .hero-content {
  max-width: 640px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-grid--home {
  grid-template-columns: 1fr 1fr;
}

.service-card--wide {
  grid-column: 1 / -1;
}

.service-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(232, 207, 203, 0.65);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}

.service-card .num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.services-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.services-split .visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.services-split .visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.services-split .visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(58, 53, 50, 0.35));
}

/* Why us */
.why-section {
  background:
    radial-gradient(ellipse at top right, rgba(232, 207, 203, 0.55), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(122, 139, 122, 0.12), transparent 50%),
    var(--pearl);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.why-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.why-list {
  display: grid;
  gap: 1.5rem;
}

.why-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 122, 0.35);
}

.why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-item p {
  color: var(--ink-soft);
}

/* Gallery */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-item:nth-child(2) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item:nth-child(6) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(58, 53, 50, 0.65));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  padding: 2.75rem 2rem;
  background: var(--white);
  border: 1px solid rgba(232, 207, 203, 0.7);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card.featured {
  background: linear-gradient(165deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: var(--white);
  border-color: var(--olive);
  transform: translateY(-10px);
}

.price-card.featured h3,
.price-card.featured .price {
  color: var(--white);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.price-card:hover {
  box-shadow: var(--shadow-soft);
}

.price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-deep);
  margin: 1rem 0 0.75rem;
}

.price span {
  font-size: 1rem;
  color: var(--ink-muted);
}

.price-card.featured .price span {
  color: rgba(255, 255, 255, 0.7);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.cta-band .hero-bg img {
  animation: none;
  transform: none;
}

.cta-band .hero-overlay {
  background: rgba(58, 53, 50, 0.55);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
  margin: 0 auto 0.5rem;
}

.cta-band .btn-group {
  justify-content: center;
}

/* About / story */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-block.reverse {
  direction: rtl;
}

.story-block.reverse > * {
  direction: ltr;
}

.story-visual {
  overflow: hidden;
  min-height: 480px;
}

.story-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.story-text p + p {
  margin-top: 1rem;
}

.story-text p {
  color: var(--ink-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-top: 2px solid var(--gold);
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Services detail page */
.detail-list {
  display: grid;
  gap: 2rem;
}

.detail-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 122, 0.28);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item .num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
}

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

.mosaic img:first-child {
  grid-row: span 2;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info {
  padding: 2.5rem;
  background: linear-gradient(165deg, var(--white), rgba(232, 207, 203, 0.35));
  border: 1px solid rgba(232, 207, 203, 0.7);
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.info-row {
  margin-bottom: 1.5rem;
}

.info-row .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}

.info-row p {
  color: var(--ink-soft);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.social-row a {
  font-size: 0.9rem;
  color: var(--olive-deep);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
}

.social-row a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.contact-visual {
  margin-top: 2rem;
  overflow: hidden;
  min-height: 240px;
}

.contact-visual img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.contact-form {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(232, 207, 203, 0.65);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.55rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--pearl);
  border: 1px solid rgba(212, 175, 122, 0.35);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 122, 0.18);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c27a7a;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Legal */
.legal-page {
  padding: calc(var(--header-height) + 4rem) 0 5rem;
}

.legal-content {
  max-width: 780px;
  margin-inline: auto;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.legal-content .meta {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.55rem;
  margin: 2.25rem 0 0.85rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li {
  list-style: disc;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 122, 0.3);
}

.faq-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  background: #2F2B28;
  color: rgba(255, 255, 255, 0.72);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-link {
  margin-bottom: 1.1rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  max-width: 28rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--blush);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  margin-top: 1.15rem;
}

.footer-social-links a {
  color: var(--gold);
  font-size: 0.9rem;
}

.footer-social-links a:hover {
  color: var(--blush);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(58, 53, 50, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(100%, 420px);
  padding: 2.5rem 2rem;
  background: var(--pearl);
  text-align: center;
  box-shadow: var(--shadow-lift);
  transform: translateY(12px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal h3 {
  margin-bottom: 0.75rem;
}

.modal p {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

.slogan-strip {
  padding: 2.5rem 0;
  text-align: center;
  background: linear-gradient(90deg, rgba(232, 207, 203, 0.45), rgba(212, 175, 122, 0.18), rgba(122, 139, 122, 0.18));
}

.slogan-strip p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid,
  .pricing-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid--home {
    grid-template-columns: 1fr 1fr;
  }

  .services-split,
  .why-grid,
  .story-block,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-block.reverse {
    direction: ltr;
  }

  .services-split .visual,
  .services-split .visual img,
  .why-visual,
  .why-visual img,
  .story-visual,
  .story-visual img {
    min-height: 360px;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 3;
    grid-row: span 2;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .mosaic img:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .logo-text {
    font-size: 1.15rem;
    letter-spacing: 0.06em;
  }

  .logo-link img {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 3.75rem 0;
  }

  .section-head {
    margin-bottom: 2.25rem;
  }

  .eyebrow {
    letter-spacing: 0.18em;
    font-size: 0.68rem;
  }

  .hero {
    align-items: flex-end;
    justify-content: flex-end;
    padding: calc(var(--header-height) + 1.5rem) 0 2.75rem;
    min-height: 100svh;
  }

  .hero-bg img {
    object-position: 72% 18%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(58, 53, 50, 0.35) 0%, rgba(58, 53, 50, 0.78) 100%),
      linear-gradient(90deg, rgba(58, 53, 50, 0.6) 0%, rgba(58, 53, 50, 0.25) 100%);
  }

  .hero-content {
    text-align: left;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 9vw, 2.85rem);
    margin-bottom: 0.9rem;
  }

  .hero-content .lead {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-content .btn-group {
    margin-top: 1.5rem;
  }

  .slogan-strip {
    padding: 1.75rem 0;
  }

  .slogan-strip p {
    font-size: 1.15rem;
    line-height: 1.4;
    padding-inline: 0.25rem;
  }

  .services-grid,
  .services-grid--home,
  .pricing-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card--wide {
    grid-column: auto;
  }

  .service-card {
    padding: 1.5rem 1.25rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
    gap: 0.65rem;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: 1 / -1;
    grid-row: span 1;
    min-height: 210px;
  }

  .gallery-item figcaption {
    opacity: 1;
    transform: none;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0.85rem;
  }

  .services-split .visual,
  .why-visual {
    height: 300px;
    min-height: 0;
    max-height: none;
  }

  .services-split .visual img,
  .why-visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }

  .nav-mobile {
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .nav-mobile a {
    font-size: 1.55rem;
    padding: 0.95rem 0;
  }

  .price-card {
    padding: 1.75rem 1.35rem;
  }

  .price {
    font-size: 1.85rem;
    margin: 0.65rem 0 0.5rem;
  }

  .nav-mobile-note {
    color: var(--ink-soft);
  }

  .faq-item h3 {
    font-size: 1.2rem;
  }

  .cta-band {
    padding: 4.5rem 0;
  }

  .detail-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mosaic img,
  .mosaic img:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social-links {
    gap: 0.85rem 1.1rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .page-hero {
    min-height: 48vh;
    padding: calc(var(--header-height) + 2.5rem) 0 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: 1 / -1;
    grid-row: span 1;
    min-height: 0;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .services-split .visual,
  .why-visual {
    height: 260px;
  }

  .price-card.featured {
    order: -1;
  }

  .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg img {
    transform: none;
  }
}
