:root {
  color-scheme: light;
  --ink: #2b2a27;
  --muted: #6f6a63;
  --accent: #b97e6c;
  --accent-strong: #8b5f52;
  --cream: #fbf7f2;
  --sand: #f2e9df;
  --rose: #f5e3dd;
  --white: #ffffff;
  --shadow: 0 30px 60px rgba(43, 42, 39, 0.12);
  --radius: 28px;
  --serif: "Didot", "Baskerville", "Bodoni MT", "Georgia", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, #faf6f1 40%, #f3ebe2 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(185, 126, 108, 0.15) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

.page-glow {
  position: absolute;
  top: -20vh;
  right: -10vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(185, 126, 108, 0.25), transparent 65%);
  filter: blur(10px);
  z-index: 0;
}

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

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(185, 126, 108, 0.2);
}

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  display: grid;
  place-items: center;
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  display: block;
}

.brand-role {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(185, 126, 108, 0.15);
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
}

.nav-cta:hover {
  background: var(--accent-strong);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 18px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 0 0 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  margin: 32px 0 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  background: var(--accent);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 18px 30px rgba(185, 126, 108, 0.25);
}

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

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(185, 126, 108, 0.4);
  box-shadow: none;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(185, 126, 108, 0.2);
}

.hero-art {
  display: flex;
  justify-content: center;
}

.art-card {
  width: min(420px, 80vw);
  height: 520px;
  border-radius: 40px;
  background: linear-gradient(160deg, #f7e5dd 0%, #f0d4c6 45%, #f8f2ec 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
}

.art-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.art-sheen {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.75), transparent 60%);
}

.art-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.art-caption {
  padding: 0 0 2px 28px;
  position: relative;
  z-index: 1;
  color: #5a433b;
}

.art-caption p {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: linear-gradient(180deg, #fbf7f2 0%, #f5ece3 100%);
}

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 14px;
}

.section-head p {
  color: var(--muted);
}

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

.card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(43, 42, 39, 0.08);
  border: 1px solid rgba(185, 126, 108, 0.15);
}

.card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.card p {
  color: var(--muted);
}

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

.timeline-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  background: rgba(255, 255, 255, 0.8);
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(185, 126, 108, 0.12);
}

.step {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
}

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

.testimonial {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(185, 126, 108, 0.15);
  box-shadow: 0 16px 30px rgba(43, 42, 39, 0.08);
}

.testimonial blockquote {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #4b3a32;
}

.testimonial figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

/* --- Carousel Styles --- */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
  flex: 1;
  position: relative;
  height: 460px;
}

.carousel-button {
  background: var(--white);
  border: 1px solid rgba(185, 126, 108, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--accent-strong);
  box-shadow: 0 4px 12px rgba(43, 42, 39, 0.05);
  transition: all 0.2s;
  flex-shrink: 0;
  z-index: 4;
}

.carousel-button:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.gallery-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-card {
  width: 320px;
  height: 400px;
  border-radius: 24px;
  background: linear-gradient(140deg, #f7e4dc 0%, #f0d6c8 45%, #f7efe8 100%);
  box-shadow: 0 16px 30px rgba(43, 42, 39, 0.08);
  border: 1px solid rgba(185, 126, 108, 0.12);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}

.gallery-card.active {
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  opacity: 1;
  filter: blur(0px);
  pointer-events: auto;
}

.gallery-card.prev {
  transform: translate(calc(-50% - 240px), -50%) scale(0.85);
  z-index: 2;
  opacity: 0.6;
  filter: blur(2px);
}

.gallery-card.next {
  transform: translate(calc(-50% + 240px), -50%) scale(0.85);
  z-index: 2;
  opacity: 0.6;
  filter: blur(2px);
}

.gallery-card.hidden-left {
  transform: translate(calc(-50% - 400px), -50%) scale(0.7);
  z-index: 1;
  opacity: 0;
  filter: blur(4px);
}

.gallery-card.hidden-right {
  transform: translate(calc(-50% + 400px), -50%) scale(0.7);
  z-index: 1;
  opacity: 0;
  filter: blur(4px);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card--portrait {
  background: linear-gradient(140deg, #f8efe8 0%, #f3e2d6 45%, #fbf7f2 100%);
}

.gallery-image--portrait {
  object-fit: contain;
  object-position: center center;
  padding: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
  object-position: top center;
  max-width: 100%;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: end;
  width: min(100%, 460px);
  margin-inline: auto;
}

.about-portrait {
  width: 100%;
}

.about-card {
  background: var(--white);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(185, 126, 108, 0.16);
  position: relative;
  overflow: hidden;
}

.about-card--floating {
  width: 92%;
  margin-top: -50px;
  z-index: 2;
}

.about-frame {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px dashed rgba(185, 126, 108, 0.3);
}

.about-text {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.about-text span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.about-text strong {
  font-size: 1.1rem;
}

.signature {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--accent-strong);
}

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

details {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 20px;
  border: 1px solid rgba(185, 126, 108, 0.15);
}

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

details p {
  color: var(--muted);
}

.contact {
  background: linear-gradient(135deg, #f7e7df 0%, #f8f4ef 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  max-width: 640px;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-details span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.card-action-row {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}


.site-footer {
  background: #2f2b28;
  color: #f8f2ec;
  padding: 60px 0 30px;
}

.legal {
  display: grid;
  gap: 24px;
}

.legal-card {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(185, 126, 108, 0.15);
  box-shadow: 0 16px 30px rgba(43, 42, 39, 0.06);
  color: var(--muted);
}

.legal-card strong {
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer a {
  display: block;
  color: #f8f2ec;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: rgba(248, 242, 236, 0.6);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

  .hero {
    padding-top: 90px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    justify-self: center;
    width: min(100%, 520px);
  }

  .art-card {
    height: 420px;
  }

  .carousel-wrapper {
    gap: 8px;
  }

  .carousel-viewport {
    height: 380px;
  }

  .gallery-card {
    width: 260px;
    height: 320px;
  }

  .gallery-card.prev {
    transform: translate(calc(-50% - 160px), -50%) scale(0.85);
  }

  .gallery-card.next {
    transform: translate(calc(-50% + 160px), -50%) scale(0.85);
  }

  .gallery-card.hidden-left {
    transform: translate(calc(-50% - 300px), -50%) scale(0.7);
  }

  .gallery-card.hidden-right {
    transform: translate(calc(-50% + 300px), -50%) scale(0.7);
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-badges {
    flex-direction: column;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .step {
    margin-bottom: 8px;
  }

  .carousel-wrapper {
    position: relative;
    display: block;
  }

  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 5;
  }

  .carousel-button:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .carousel-button.left {
    left: 0px;
  }

  .carousel-button.right {
    right: 0px;
  }

  .carousel-viewport {
    width: 100%;
    height: 360px;
  }

  .gallery-card {
    width: 220px;
    height: 300px;
  }

  .gallery-card--portrait {
    width: 240px;
    height: 332px;
  }

  .gallery-image--portrait {
    padding: 8px;
  }

  .gallery-card.prev {
    transform: translate(calc(-50% - 90px), -50%) scale(0.85);
    opacity: 0.4;
  }

  .gallery-card.next {
    transform: translate(calc(-50% + 90px), -50%) scale(0.85);
    opacity: 0.4;
  }

  .gallery-card.hidden-left {
    transform: translate(calc(-50% - 180px), -50%) scale(0.7);
  }

  .gallery-card.hidden-right {
    transform: translate(calc(-50% + 180px), -50%) scale(0.7);
  }

  .about-card {
    padding: 24px;
  }

  .about-card--floating {
    width: calc(100% - 24px);
    margin-top: -42px;
  }

  .card-action-row .button {
    width: 100%;
    text-align: center;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(251, 247, 242, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(185, 126, 108, 0.2);
  box-shadow: 0 -8px 32px rgba(43, 42, 39, 0.1);
  padding: 20px 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.hiding {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-inner {
  width: min(1120px, 90vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-banner-text a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
  color: var(--accent);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  line-height: 1.4;
}

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

.cookie-btn-accept {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(185, 126, 108, 0.25);
}

.cookie-btn-accept:hover {
  background: var(--accent-strong);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(185, 126, 108, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(185, 126, 108, 0.08);
  color: var(--ink);
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 16px 0;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    padding: 10px 16px;
  }
}