:root {
  --cream: #f7f1e7;
  --paper: #fffaf2;
  --ink: #2f332d;
  --sage: #637057;
  --sage-dark: #46503e;
  --rose: #bd827d;
  --rose-pale: #ead1cc;
  --gold: #a7804b;
  --line: rgba(47, 51, 45, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
}
.site-header {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  position: relative;
  background: var(--cream);
  z-index: 10;
  border-bottom: 0;
  margin-bottom: 0;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(247, 241, 231, 0.98),
    rgba(247, 241, 231, 0)
  );
  pointer-events: none;
  z-index: 1;
}
.header-banner {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #f6efe5;
}
.header-banner img {
  display: block;
  width: 100%;
  height: clamp(160px, 24vw, 300px);
  aspect-ratio: 8 / 3;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
}
.header-menu-row {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 100;
}
.header-menu-row .header-cta {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  position: static;
  border: 1px solid rgba(70, 80, 62, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.92);
  color: var(--sage-dark);
  padding: 0;
  box-shadow: 0 6px 22px rgba(47, 51, 45, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease;
}
.header-menu-row .header-cta:hover,
.header-menu-row .header-cta:focus-visible {
  background: var(--paper);
  border-color: rgba(70, 80, 62, 0.48);
  box-shadow: 0 5px 18px rgba(47, 51, 45, 0.14);
  outline: none;
}
.checkout-menu-row {
  justify-content: flex-end;
}
.floating-back-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.floating-back-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--sage);
  border-radius: 50% 48% 52% 44%;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--sage);
}
.botanical-mark {
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: url("assets/oakes-roses-emblem.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.site-header .brand strong {
  color: var(--sage);
}
.site-header .brand > span:last-child {
  text-align: center;
}
.site-header .brand small {
  display: block;
  text-align: center;
}
.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1;
}
.brand small {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--sage);
}
.site-header nav {
  display: none;
  position: absolute;
  top: auto;
  bottom: calc(100% + 10px);
  right: 0;
  width: min(260px, calc(100vw - 32px));
  background: rgba(247, 241, 231, 0.98);
  padding: 18px 22px;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(47, 51, 45, 0.14);
}
.site-header nav.open {
  display: flex;
}
nav a,
.header-cta {
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 600;
}
.header-cta {
  border-bottom: 1px solid var(--ink);
}
.menu-button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(70, 80, 62, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.92);
  color: var(--sage-dark);
  padding: 0;
  box-shadow: 0 6px 22px rgba(47, 51, 45, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease,
    box-shadow 160ms ease;
}
.menu-button,
.menu-icon {
  display: flex;
}
.menu-icon {
  width: 20px;
  flex-direction: column;
  gap: 3px;
}
.menu-icon i {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
}
.menu-button:hover,
.menu-button:focus-visible {
  background: rgba(247, 241, 231, 0.97);
  transform: translateY(-2px);
  outline: 2px solid rgba(70, 80, 62, 0.35);
  outline-offset: 2px;
}
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  position: relative;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 241, 231, 0.98) 0%,
    rgba(247, 241, 231, 0.89) 38%,
    rgba(247, 241, 231, 0.05) 70%
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  align-self: start;
  padding: clamp(62px, 7vw, 100px) 3vw 70px clamp(28px, 8vw, 130px);
  max-width: 740px;
}
.eyebrow,
.mini {
  color: var(--sage);
  font-size: 0.74rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 18px;
}
.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.hero h1 {
  font-family: "Italiana", "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.4vw, 4.65rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 30px;
  max-width: 740px;
}
.hero-line-heading span {
  display: block;
  white-space: nowrap;
}
.hero-line-heading {
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 4vw, 52px);
  align-self: center;
  margin: 0;
}
.lede {
  font-size: 1.15rem;
  max-width: 550px;
  margin-bottom: 36px;
}
.hero-lower-copy {
  margin-top: 0;
}
.hero-lower-copy .lede {
  margin-top: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.button {
  display: inline-block;
  text-decoration: none;
  padding: 15px 22px;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 2px;
}
.primary {
  background: var(--sage);
  color: white;
}
.dark {
  background: var(--ink);
  color: white;
}
.text-link {
  font-weight: 700;
  text-decoration: none;
}
.text-link span,
.product-info a span {
  color: var(--rose);
  margin-left: 5px;
}
.verse {
  padding: 32px 24px;
  text-align: center;
  background: var(--sage-dark);
  color: white;
}
.verse p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin: 0;
}
.verse span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-pale);
}
.section {
  padding: 110px clamp(24px, 7vw, 110px);
}
.section-heading {
  max-width: 660px;
  margin-bottom: 50px;
}
.section h2 {
  font-size: clamp(2.9rem, 5vw, 5rem);
  margin: 0 0 20px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}
.product-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 686 / 800;
}
.product-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jar {
  width: 150px;
  height: 155px;
  border-radius: 10px 10px 24px 24px;
  background: linear-gradient(90deg, #5a2f17, #a95b27 40%, #633318);
  border-top: 20px solid #2a2927;
  box-shadow: 0 22px 30px rgba(43, 31, 23, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: #34372f;
}
.jar:after {
  content: "";
  position: absolute;
  background: #eee7d6;
  height: 78px;
  width: 100%;
  z-index: -1;
}
.jar i {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-style: normal;
}
.jar b {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
}
.product-info {
  padding: 42px;
  display: grid;
  align-content: center;
  position: relative;
}
.product-info h3,
.ingredient-list h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  margin: 0;
}
.product-info .mini {
  margin: 0;
}
.product-ingredients {
  color: #555e53;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 8px;
}
.product-ingredients strong {
  color: var(--ink);
}
.photo-note {
  color: var(--sage);
  font-size: 0.78rem;
  font-style: italic;
  margin: 0 0 12px;
}
.size {
  position: absolute;
  right: 28px;
  top: 28px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}
.product-info a {
  font-weight: 700;
  text-decoration: none;
  margin-top: 18px;
}
.launch-note {
  text-align: center;
  margin: 35px 0 0;
  color: var(--sage);
  font-size: 0.9rem;
}
.ingredients {
  background: var(--paper);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 130px);
}
.ingredient-copy {
  position: sticky;
  top: 40px;
  align-self: start;
}
.ingredient-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ingredient-list div {
  padding: 30px;
  border-top: 1px solid var(--line);
}
.ingredient-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.ingredient-list span {
  color: var(--rose);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}
.ingredient-list h3 {
  font-size: 1.7rem;
}
.ingredient-list p {
  margin: 5px 0;
}
.ingredient-list .wide {
  grid-column: 1/-1;
  border-right: 0;
}
.story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  padding-top: 0;
  padding-bottom: 0;
}
.story-card {
  background: var(--sage);
  color: white;
  padding: clamp(50px, 8vw, 110px);
}
.story-card .eyebrow {
  color: var(--rose-pale);
}
.story-card p {
  max-width: 670px;
}
.signature {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
}
.story-quote {
  background: var(--rose-pale);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 60px;
}
.story-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.92;
  margin: 18px 0;
  color: var(--sage-dark);
}
.rose {
  color: var(--rose);
  font-size: 2rem;
}
.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  list-style: none;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker {
  display: none;
}
details p {
  max-width: 680px;
  color: #555e53;
}
details[open] summary span {
  transform: rotate(45deg);
}
.contact {
  background: var(--rose);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.contact h2 {
  max-width: 700px;
}
.contact .eyebrow {
  color: white;
}
.contact p {
  max-width: 600px;
}
.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  text-underline-offset: 5px;
}
.facebook-link:hover,
.facebook-link:focus-visible {
  color: var(--cream);
}
.contact-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(36, 40, 33, 0.3);
}
.contact-dialog::backdrop {
  background: rgba(36, 40, 33, 0.72);
  backdrop-filter: blur(4px);
}
.contact-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.contact-dialog h2 {
  margin: 0;
  font: 600 clamp(2.2rem, 6vw, 3.5rem)/1 "Cormorant Garamond", serif;
}
.contact-dialog > p {
  margin: 14px 0 24px;
  color: #555e53;
}
.contact-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--sage-dark);
  font: 400 1.8rem/1 sans-serif;
  cursor: pointer;
}
.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-fields label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
}
.contact-fields label span {
  color: #687063;
  font-weight: 400;
}
.contact-fields input,
.contact-fields textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font: inherit;
}
.contact-fields textarea {
  resize: vertical;
}
.contact-message-field {
  grid-column: 1 / -1;
}
.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}
.contact-form-actions p {
  margin: 0;
  font-weight: 600;
}
.contact-form-actions p.error {
  color: #8f3636;
}
.contact-botcheck {
  position: absolute;
  left: -9999px;
}
body.contact-dialog-open {
  overflow: hidden;
}
footer {
  padding: 70px clamp(24px, 7vw, 110px);
  background: #242821;
  color: #f6f0e7;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  align-items: center;
  gap: 30px;
}
footer p,
footer a {
  font-size: 0.85rem;
}
.footer-brand {
  margin: 0;
}
footer > small {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  color: #aeb4aa;
}
@media (max-width: 900px) {
  .site-header {
    min-height: 0;
    margin-bottom: 0;
  }
  .header-banner img {
    height: clamp(118px, 37.5vw, 250px);
    min-height: 118px;
    aspect-ratio: 8 / 3;
    object-fit: cover;
  }
  .header-menu-row {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
  .header-cta {
    display: none;
  }
  .checkout-menu-row .header-cta {
    display: grid;
    position: static;
  }
  .hero {
    min-height: 680px;
    grid-template-columns: 1fr;
  }
  .hero img {
    object-position: 64% center;
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      rgba(247, 241, 231, 0.96),
      rgba(247, 241, 231, 0.62) 70%,
      rgba(247, 241, 231, 0.15)
    );
  }
  .hero-copy {
    align-self: start;
    padding-top: clamp(62px, 9vw, 92px);
    padding-left: 7vw;
    max-width: 650px;
  }
  .product-grid,
  .ingredients,
  .story,
  .faq {
    grid-template-columns: 1fr;
  }
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-visual {
    min-height: 310px;
  }
  .ingredient-copy {
    position: static;
  }
  .faq {
    gap: 30px;
  }
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .header-banner img {
    min-height: 112px;
    object-fit: cover;
  }
  .contact-fields {
    grid-template-columns: 1fr;
  }
  .contact-message-field {
    grid-column: auto;
  }
  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .brand strong {
    font-size: 1.1rem;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .hero {
    min-height: 740px;
  }
  .hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
  }
  .hero-copy {
    align-self: start;
    padding-top: 72px;
    padding-bottom: 58px;
  }
  .section {
    padding: 78px 22px;
  }
  .product-info {
    padding: 34px 28px;
  }
  .ingredient-list {
    grid-template-columns: 1fr;
  }
  .ingredient-list div:nth-child(odd) {
    border-right: 0;
  }
  .ingredient-list .wide {
    grid-column: auto;
  }
  .story-quote {
    min-height: 400px;
  }
  .faq {
    gap: 10px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    margin-right: auto;
  }
}
