﻿:root {
  --bg: #f7f2e8;
  --bg-soft: #fbf8f1;
  --sand: #ede2d1;
  --wood: #866247;
  --wood-deep: #5b3f2c;
  --leaf: #5f7c62;
  --leaf-deep: #324d36;
  --ink: #2a241c;
  --text: #5f574d;
  --line: rgba(105, 87, 62, 0.18);
  --card: rgba(255, 251, 245, 0.72);
  --shadow-soft: 0 24px 60px rgba(71, 52, 33, 0.12);
  --shadow-strong: 0 32px 80px rgba(51, 35, 19, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(146, 179, 136, 0.22), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(181, 149, 114, 0.18), transparent 24%),
    linear-gradient(180deg, #f9f5ec 0%, #f5efe4 48%, #f8f4ed 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
  color: var(--text);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-noise,
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-noise {
  opacity: 0.035;
  background-image: radial-gradient(#000 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  z-index: -3;
}

.page-glow {
  z-index: -2;
}

.page-glow-left {
  background: radial-gradient(circle at 0% 20%, rgba(117, 157, 114, 0.18), transparent 26%);
}

.page-glow-right {
  background: radial-gradient(circle at 100% 0%, rgba(160, 119, 83, 0.18), transparent 24%);
}

.hero {
  position: relative;
  padding: 24px 0 80px;
  min-height: 100vh;
}

.nav {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 126px;
  max-width: 390px;
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.nav-signature {
  margin-left: -4px;
  justify-self: start;
  text-align: left;
  padding: 6px 16px;
}

.nav-slogan {
  margin: 0;
}

.nav-slogan {
  color: var(--wood-deep);
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3.1vw, 2.5rem);
  line-height: 1.05;
}

.brand-logo-large {
  height: 145px;
  max-width: 450px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  justify-self: end;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 40px;
  align-items: center;
  padding-top: 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.kicker,
.section-tag,
.hero-note-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--leaf-deep);
}

.kicker::before,
.section-tag::before,
.hero-note-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  max-width: 11ch;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 58ch;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.button-primary {
  color: #fff9f2;
  background: linear-gradient(135deg, var(--wood) 0%, var(--wood-deep) 100%);
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 252, 247, 0.66);
  border: 1px solid rgba(91, 63, 44, 0.12);
  backdrop-filter: blur(16px);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

.hero-main-photo {
  inset: 20px 0 120px 80px;
  transform: rotate(-5deg);
}

.hero-side-photo {
  right: 18px;
  bottom: 38px;
  width: 270px;
  height: 320px;
  border: 10px solid rgba(255, 250, 242, 0.86);
  transform: rotate(7deg);
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 84px;
  width: min(280px, 74%);
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(93, 70, 48, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-note p {
  margin: 0;
  color: var(--ink);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  background:
    radial-gradient(90% 140px at 0% 100%, transparent 68%, #f8f4ed 69%),
    radial-gradient(90% 140px at 100% 100%, transparent 68%, #f8f4ed 69%);
}

.intro,
.gallery-band,
.focus,
.practical {
  position: relative;
  z-index: 1;
}

.overview {
  padding: 34px 0 70px;
}

.gourmandises {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 78px;
  align-items: stretch;
}

.gourmandises-copy {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(105, 87, 62, 0.1);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.9), rgba(245, 236, 224, 0.78));
  box-shadow: var(--shadow-soft);
}

.gourmandises-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 14px;
}

.gourmandises-copy p {
  margin: 0;
}

.gourmandises-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gourmandise-slot {
  margin: 0;
  min-height: 230px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.86);
  border: 1px solid rgba(105, 87, 62, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.gourmandise-placeholder {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: var(--text);
  font-weight: 600;
  background:
    linear-gradient(145deg, rgba(143, 176, 134, 0.16), rgba(201, 170, 138, 0.16)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.24) 0 8px, rgba(255, 255, 255, 0.08) 8px 16px);
}

.overview-lead {
  max-width: 72ch;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-item {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.82);
  border: 1px solid rgba(105, 87, 62, 0.1);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff9f2;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-deep) 100%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.service-item p {
  margin: 0;
}

.ambiance-strip {
  padding: 16px 0 86px;
}

.ambiance-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.ambiance-copy {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(105, 87, 62, 0.1);
  background:
    linear-gradient(150deg, rgba(143, 176, 134, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(245, 236, 224, 0.8));
  box-shadow: var(--shadow-soft);
}

.ambiance-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  margin-bottom: 14px;
}

.material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.material-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(103, 87, 66, 0.14);
  background: rgba(255, 252, 247, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
}

.ambiance-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ambiance-frame {
  padding: 8px;
  border-radius: 26px;
  background: rgba(255, 251, 245, 0.86);
  border: 1px solid rgba(105, 87, 62, 0.1);
  box-shadow: var(--shadow-soft);
}

.mood-card {
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mood-card img {
  height: 220px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.duo {
  padding: 10px 0 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.duo-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(105, 87, 62, 0.1);
  background: rgba(255, 251, 245, 0.82);
  box-shadow: var(--shadow-soft);
}

.duo-card > img {
  height: 260px;
}

.duo-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  height: 260px;
}

.duo-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.duo-tile-wide {
  grid-column: span 2;
}

.duo-copy {
  padding: 24px;
}

.duo-copy h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.intro {
  padding: 34px 0 70px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2,
.immersive-copy h2,
.gallery-copy h2,
.hours-card h2,
.contact-card h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.quote-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.86), rgba(245, 237, 226, 0.74));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  margin: 0;
  color: var(--wood-deep);
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.immersive {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 40px 0 88px;
}

.immersive-media {
  position: relative;
  min-height: 620px;
}

.stack-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

.stack-photo-large {
  inset: 0 80px 90px 0;
}

.stack-photo-small {
  right: 0;
  bottom: 0;
  width: 280px;
  height: 330px;
  border: 10px solid rgba(255, 250, 242, 0.88);
}

.immersive-copy {
  padding: 36px;
  border-radius: 38px;
  background: rgba(255, 251, 246, 0.6);
  border: 1px solid rgba(105, 87, 62, 0.1);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-cloud span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.94);
  border: 1px solid rgba(103, 87, 66, 0.14);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.gallery-band {
  padding: 30px 0 90px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 30px;
  align-items: center;
}

.gallery-copy {
  padding-right: 18px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
  align-items: stretch;
}

.mosaic-card {
  overflow: hidden;
  min-height: 240px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.mosaic-card.tall {
  grid-row: span 2;
  min-height: 520px;
}

.focus {
  padding: 10px 0 95px;
  display: grid;
  gap: 24px;
}

.focus-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.86), rgba(245, 236, 224, 0.74));
  border: 1px solid rgba(105, 87, 62, 0.1);
  box-shadow: var(--shadow-soft);
}

.focus-card-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.focus-media {
  min-height: 360px;
}

.focus-copy {
  padding: 40px;
}

.focus-copy h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.practical {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  padding-bottom: 44px;
}

.hours-card,
.contact-card {
  padding: 38px;
  border-radius: 36px;
  background: rgba(255, 251, 245, 0.76);
  border: 1px solid rgba(105, 87, 62, 0.1);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hours-list {
  list-style: none;
  margin: 26px 0 20px;
  padding: 0;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(105, 87, 62, 0.12);
  color: var(--ink);
}

.hours-list span {
  color: var(--text);
}

.hours-list strong {
  font-size: 1.05rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff9f2;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-deep) 100%);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.visit-cta {
  margin-bottom: 84px;
  padding: 38px;
  border-radius: 36px;
  border: 1px solid rgba(105, 87, 62, 0.1);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(245, 236, 224, 0.76));
  box-shadow: var(--shadow-soft);
}

.visit-cta h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  margin-bottom: 20px;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  position: relative;
  padding: 38px 0 48px;
  background: linear-gradient(180deg, rgba(83, 58, 40, 0) 0%, rgba(83, 58, 40, 0.08) 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(105, 87, 62, 0.12);
}

.footer-line,
.footer-text {
  margin: 0;
}

.footer-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-size: 1.12rem;
  color: var(--ink);
}

.footer-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(71, 52, 33, 0.12);
}

.footer-logo-wide {
  width: auto;
  height: 56px;
  max-width: 180px;
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }

  .nav-signature {
    padding: 2px 0 4px;
    text-align: left;
    justify-self: start;
  }

  .nav-links {
    justify-self: start;
  }

  .hero-wrap,
  .intro-grid,
  .gourmandises,
  .immersive,
  .gallery-grid,
  .focus-card,
  .focus-card-reverse,
  .services-grid,
  .ambiance-story,
  .ambiance-cards,
  .gourmandises-photos,
  .duo,
  .practical {
    grid-template-columns: 1fr;
  }

  .hero-wrap {
    gap: 26px;
  }

  .hero-visual,
  .immersive-media {
    min-height: auto;
  }

  .hero-card,
  .stack-photo {
    position: relative;
  }

  .hero-main-photo,
  .hero-side-photo,
  .stack-photo-large,
  .stack-photo-small {
    inset: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .hero-side-photo,
  .stack-photo-small {
    margin-top: 16px;
    border-width: 0;
  }

  .hero-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .hero-wave {
    height: 68px;
  }

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

  .mosaic-card.tall {
    grid-row: auto;
    min-height: 360px;
  }

  .ambiance-copy {
    padding: 26px 22px;
  }

  .focus-media {
    min-height: 300px;
  }

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

@media (max-width: 640px) {
  .brand {
  }

  .brand-logo {
    width: auto;
    height: 98px;
    max-width: 300px;
    flex-basis: auto;
  }

  .brand-logo-large {
    height: 113px;
    max-width: 345px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 24px;
  }

  .hero-wave {
    display: none;
  }

  .overview {
    padding-top: 8px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .button,
  .social-pill {
    width: 100%;
  }

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

  .immersive-copy,
  .focus-copy,
  .hours-card,
  .contact-card,
  .quote-card,
  .visit-cta {
    padding: 28px 22px;
  }

  .service-item {
    padding: 20px;
  }

  .duo-card > img,
  .duo-media-grid {
    height: 220px;
  }

  .visit-actions {
    flex-direction: column;
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}

