:root {
  --cream: #f9f3df;
  --cream-2: #f3ecd6;
  --ink: #3a362f;
  --ink-soft: rgba(58, 54, 47, 0.6);
  --sage: #9caa6c;
  --sage-dark: #7c8c55;
  --sage-tint: rgba(156, 170, 108, 0.12);
  --terracotta: #e2793c;
  --white: #ffffff;
  --line: rgba(58, 54, 47, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

img,
.ph {
  display: block;
  width: 100%;
  object-fit: cover;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

button,
.btn {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  padding: 14px 26px;
  box-shadow: 0 8px 20px rgba(156, 170, 108, 0.24);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 12px 24px;
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
}

.btn-sage {
  background: var(--white);
  color: var(--sage-dark);
  padding: 14px 26px;
  border: 1.5px solid var(--sage);
}
.btn-sage:hover {
  background: var(--sage-tint);
}

.ph {
  background: #fafaf8;
  border: 1px dashed rgba(58, 54, 47, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(58, 54, 47, 0.38);
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}
header.scrolled {
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header .nav-links a {
  color: var(--white);
  transition: color 0.35s ease;
}
header.scrolled .nav-links a {
  color: var(--ink);
  opacity: 0.75;
}
header .btn-primary {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-mark {
  display: flex;
  align-items: center;
}
.logo-text {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease;
}
header.scrolled .logo-text {
  color: var(--ink);
  text-shadow: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  opacity: 0.75;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--terracotta);
}

.hero {
  padding: 0;
}
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 680px;
  overflow: hidden;
  margin-bottom: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  display: block;
}
@media (min-width: 1400px) {
  .hero-photo {
    min-height: 760px;
  }
  .hero-photo img {
    object-position: center 90%;
  }
}
@media (min-width: 1800px) {
  .hero-photo {
    min-height: 820px;
  }
  .hero-photo img {
    object-position: center bottom;
  }
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 22%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  padding: 0 6% 4% 0;
  z-index: 2;
}
.hero-overlay .hero-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  margin-bottom: 18px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}
.hero-overlay h1 {
  font-family: "Fraunces", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  color: var(--white);
  text-shadow:
    0 4px 30px rgba(0, 0, 0, 0.35),
    0 1px 6px rgba(0, 0, 0, 0.3);
}
.hero-overlay h1 span {
  display: inline-block;
  color: var(--cream);
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-size: 1.3em;
  text-shadow:
    0 4px 30px rgba(0, 0, 0, 0.35),
    0 1px 6px rgba(0, 0, 0, 0.3);
}
.hero-textblock {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 28px 60px;
  text-align: center;
  position: relative;
  top: -1px;
}
.hero-rule-top {
  width: 36px;
  height: 2px;
  background: var(--sage);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.hero-textblock p.lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.section-rule {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-rule hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.week-strip {
  padding: 20px 0;
}
.week-card {
  background: var(--sage-tint);
  border: 1px solid rgba(156, 170, 108, 0.28);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  flex-wrap: wrap;
}
.day {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  padding: 6px 13px;
  border-radius: 100px;
}
.day.active {
  color: var(--white);
  background: var(--sage);
}
.week-msg {
  color: var(--ink-soft);
  font-size: 13px;
  margin-left: 6px;
}

.section {
  padding: 80px 0;
}
.section-head {
  max-width: 540px;
  margin-bottom: 44px;
}
.eyebrow-sm {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(20px, 5.2vw, 34px);
  margin-bottom: 12px;
  white-space: nowrap;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 16px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: start;
  gap: 8px;
  width: 100%;
  height: clamp(400px, 42vw, 700px);
  margin-bottom: 48px;
  overflow: hidden;
}
.gallery-img-1 {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: stretch;
}
.gallery-img-2 {
  grid-column: 2;
  grid-row: 1;
}
.gallery-img-3 {
  grid-column: 2;
  grid-row: 2;
}
.gallery img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}
@media (max-width: 640px) {
  .gallery {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    overflow: visible;
  }
  .gallery .gallery-img-1 {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .gallery .gallery-img-2,
  .gallery .gallery-img-3 {
    width: calc(50% - 7px);
    aspect-ratio: 1 / 1;
  }
  .gallery img {
    height: auto;
  }
}

.product-copy {
  max-width: 600px;
  margin-bottom: 44px;
}
.product-copy h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.product-copy p {
  color: var(--ink-soft);
  font-size: 16px;
}

.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.option-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.option-card.featured {
  border-color: rgba(156, 170, 108, 0.5);
  box-shadow: 0 16px 36px rgba(58, 54, 47, 0.07);
  position: relative;
}
.badge {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--sage);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.option-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.option-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.option-gallery img:hover {
  opacity: 0.85;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 18, 15, 0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: min(88vw, 900px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox-prev {
  left: 16px;
}
.lightbox-next {
  right: 16px;
}
@media (max-width: 640px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
}
@media (max-width: 400px) {
  .section-head h2 {
    white-space: normal;
  }
}
.option-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 8px;
}
.option-card h4 {
  font-family: "Fraunces", serif;
  font-size: 23px;
  color: var(--ink);
  margin-bottom: 6px;
}
.option-detail {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.option-price {
  font-family: "Fraunces", serif;
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 16px;
}
.option-price .from {
  font-size: 13.5px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  color: var(--ink-soft);
}
.option-sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex-grow: 1;
}
.order-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 26px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.about {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  object-fit: cover;
  margin-top: 24px;
  margin-bottom: 24px;
}
.about h2 {
  font-size: 32px;
  margin-bottom: 18px;
}
.about p {
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 460px;
}

footer {
  padding: 52px 0 36px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo .logo-text {
  font-size: 24px;
  color: var(--ink);
  text-shadow: none;
}
.footer-logo-img {
  height: 96px;
  width: 96px;
  object-fit: contain;
}
.footer-tag {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 260px;
}
.footer-col h5 {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
}
.footer-col p,
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}
.social-dots {
  display: flex;
  gap: 10px;
}
.social-dots a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.social-dots a:hover {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.float-msg {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  background: var(--sage);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(156, 170, 108, 0.34);
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-msg:hover {
  background: var(--sage-dark);
}

@media (max-width: 860px) {
  .hero {
    padding: 0;
  }
  .hero-photo {
    aspect-ratio: 3 / 4;
    max-height: 600px;
  }
  .hero-overlay {
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0 24px 8%;
  }
  .hero-overlay h1 {
    font-size: 38px;
  }
  .hero-textblock {
    padding: 40px 24px 48px;
  }
  .hero p.lead {
    max-width: none;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-side {
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
  }
  .options {
    grid-template-columns: 1fr;
  }
  .about .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }
  .nav-links {
    display: none;
  }
  .section {
    padding: 56px 0;
  }
  .footer-top {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
