@charset "UTF-8";

:root {
  --color-bg: #f7f3ec;
  --color-surface: #ffffff;
  --color-surface-soft: #efe7da;
  --color-text: #211e1a;
  --color-muted: #6f685f;
  --color-border: #ddd4c7;
  --color-gold: #b69035;
  --color-gold-dark: #8e6d20;
  --color-dark: #1f1f1d;
  --color-label: #d9b5ab;
  --shadow-soft: 0 12px 36px rgb(41 31 18 / 8%);
  --container: 1200px;
  --header-height: 76px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --transition: 180ms ease;
  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgb(182 144 53 / 45%);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 108px;
}

.section__header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.section__lead {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(221 212 199 / 80%);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand__mark {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  line-height: 1.2;
}

.brand__text strong {
  font-size: 16px;
  letter-spacing: 0.08em;
}

.brand__text small {
  margin-top: 3px;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 10px;
}

.global-nav {
  justify-self: center;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--header-height);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.global-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--color-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.global-nav__link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
}

.header-actions a {
  transition: color var(--transition);
}

.header-actions a:hover {
  color: var(--color-gold-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  background:
    radial-gradient(circle at 78% 25%, rgb(255 255 255 / 95%), transparent 34%),
    linear-gradient(115deg, #f2e9dc 0%, #f9f6f0 47%, #e7ded2 100%);
}

.hero::before {
  position: absolute;
  top: -180px;
  left: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgb(255 255 255 / 42%);
  content: "";
  filter: blur(2px);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  min-height: 650px;
  gap: 44px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 72px;
}

.hero__eyebrow {
  margin: 0 0 16px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.055em;
}

.hero__lead {
  max-width: 600px;
  margin: 24px 0 0;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.9;
}

.hero-price {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  min-width: 330px;
  margin-top: 32px;
  padding: 20px 22px;
  background: rgb(255 255 255 / 84%);
  border: 1px solid rgb(221 212 199 / 80%);
  box-shadow: var(--shadow-soft);
  gap: 18px;
}

.hero-price__item + .hero-price__item {
  padding-left: 18px;
  border-left: 1px solid var(--color-border);
}

.hero-price__size {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
}

.hero-price__amount {
  display: block;
  margin-top: 2px;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-price__tax {
  margin-left: 3px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.hero__product {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgb(36 25 13 / 24%));
}

.hero__product--large {
  right: 130px;
  bottom: -10px;
  width: min(48%, 330px);
}

.hero__product--small {
  right: 12px;
  bottom: -8px;
  width: min(31%, 210px);
}

.hero__dish {
  position: absolute;
  right: 330px;
  bottom: 38px;
  width: 190px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

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

.button--primary {
  color: #fff;
  background: var(--color-gold);
  box-shadow: 0 8px 20px rgb(142 109 32 / 18%);
}

.button--primary:hover {
  background: var(--color-gold-dark);
}

.button--secondary {
  color: var(--color-gold-dark);
  background: transparent;
  border-color: var(--color-gold);
}

.button--secondary:hover {
  color: #fff;
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.features {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  padding-block: 0 96px;
  background: var(--color-bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transform: translateY(-30px);
}

.feature-card {
  min-height: 230px;
  padding: 34px 32px;
  background: var(--color-surface);
  border: 1px solid rgb(221 212 199 / 70%);
  box-shadow: var(--shadow-soft);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--color-gold);
}

.feature-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 700;
}

.story {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
}

.story::after {
  position: absolute;
  right: 4%;
  bottom: -120px;
  color: rgb(217 181 171 / 12%);
  font-family: var(--font-serif);
  font-size: 360px;
  line-height: 1;
  content: "雅";
  pointer-events: none;
}

.story__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: stretch;
  gap: 72px;
}

.story__media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 430px;
  overflow: hidden;
}

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

.story__content {
  align-self: center;
}

.story__content h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.5;
}

.story__content p {
  margin: 24px 0 0;
  color: var(--color-muted);
}

.story__content .button {
  margin-top: 28px;
}

.uses {
  background: var(--color-bg);
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.use-card {
  background: transparent;
}

.use-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.use-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.use-card:hover .use-card__image img {
  transform: scale(1.035);
}

.use-card h3 {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: 20px;
}

.use-card p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.uses__actions {
  margin-top: 42px;
  text-align: center;
}

.lineup {
  background: var(--color-surface);
}

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

.product-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f2ea, #eee4d7);
  border: 1px solid var(--color-border);
}

.product-card__image {
  display: grid;
  place-items: center;
  padding: 34px 20px;
  background: rgb(255 255 255 / 42%);
}

.product-card__image img {
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgb(36 25 13 / 18%));
}

.product-card__body {
  display: flex;
  flex-direction: column;
  padding: 42px 38px;
}

.product-card__body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
}

.product-card__body p {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.product-card__meta {
  margin: 20px 0 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 13px;
  list-style: none;
}

.product-card__price {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
}

.product-card .button {
  width: 100%;
  margin-top: 16px;
}

.section--dark,
.reviews {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgb(255 255 255 / 7%), transparent 34%),
    var(--color-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  min-height: 250px;
  padding: 32px;
  color: var(--color-text);
  background: #fff;
  border-radius: var(--radius-md);
}

.review-card__stars {
  color: var(--color-gold);
  font-size: 18px;
  letter-spacing: 0.12em;
}

.review-card h3 {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-size: 20px;
}

.review-card p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.review-card__meta {
  display: block;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 12px;
  text-align: right;
}

.faq {
  background: var(--color-surface);
}

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 16px 8px;
  color: var(--color-text);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item__question::after {
  margin-left: 24px;
  color: var(--color-gold-dark);
  font-size: 22px;
  content: "+";
}

.faq-item[open] .faq-item__question::after,
.faq-item.is-open .faq-item__question::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 8px 24px;
  color: var(--color-muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 76px;
  background: linear-gradient(100deg, #f2e8da 0%, #faf7f1 55%, #e9ded0 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 48px;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
}

.final-cta p {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.final-cta .button {
  margin-top: 24px;
}

.final-cta__visual {
  align-self: end;
  max-height: 260px;
  object-fit: contain;
  object-position: center bottom;
}

.site-footer {
  padding-block: 64px 28px;
  color: rgb(255 255 255 / 78%);
  background: #191917;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 48px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-serif);
}

.site-footer p,
.site-footer a {
  font-size: 13px;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  transition: color var(--transition);
}

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

.site-footer__copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 45%);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .global-nav__list {
    gap: 20px;
  }

  .hero__product--large {
    right: 100px;
  }

  .story__inner {
    gap: 46px;
  }

  .product-card {
    grid-template-columns: 38% 62%;
  }

  .product-card__body {
    padding: 34px 28px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .global-nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .hero__inner {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero__title {
    font-size: 46px;
  }

  .hero__dish {
    display: none;
  }

  .feature-grid,
  .reviews-grid {
    gap: 16px;
  }

  .uses-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

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

  .product-card {
    min-height: 360px;
  }
}

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

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .header-actions a:not(:last-child) {
    display: none;
  }

  .hero,
  .hero__inner,
  .hero__visual {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero__content {
    padding-block: 0;
  }

  .hero__title {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero__visual {
    height: 470px;
  }

  .hero__product--large {
    right: 28%;
    width: 42%;
  }

  .hero__product--small {
    right: 6%;
    width: 27%;
  }

  .feature-grid,
  .reviews-grid,
  .story__inner,
  .final-cta__inner,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .features {
    padding-bottom: 64px;
  }

  .story__media {
    min-height: 320px;
  }

  .story__content h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    min-height: 300px;
  }

  .final-cta__visual {
    justify-self: center;
    max-height: 220px;
  }
}

@media (max-width: 520px) {
  .hero-price {
    width: 100%;
    min-width: 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

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

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

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

/* LP implementation additions */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.header-order-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: var(--color-gold);
  border-radius: var(--radius-sm);
}

.header-order-link:hover {
  color: #fff !important;
  background: var(--color-gold-dark);
}

.hero__visual {
  display: grid;
  place-items: center;
  padding: 42px 0 30px;
}

.hero__main-image {
  width: min(100%, 590px);
  max-height: 570px;
  object-fit: contain;
  border: 1px solid rgb(221 212 199 / 70%);
  box-shadow: 0 30px 70px rgb(49 36 19 / 18%);
}

.story__media {
  grid-template-columns: 1fr;
  border: 1px solid var(--color-border);
}

.story__media img {
  min-height: 430px;
}

.product-card__label {
  margin: 0 0 8px !important;
  color: var(--color-gold-dark) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-card__price small {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
}

.product-card__image--photo {
  overflow: hidden;
  padding: 0;
}

.product-card__image--photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.order {
  background:
    linear-gradient(rgb(247 243 236 / 94%), rgb(247 243 236 / 94%)),
    radial-gradient(circle at 10% 20%, var(--color-label), transparent 35%);
}

.order-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.order-calculator__form {
  padding: 48px;
}

.choice-step {
  min-width: 0;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.choice-step legend,
.choice-step__label {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  color: #fff;
  background: var(--color-gold);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 13px;
}

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

.choice-buttons--bottles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-button {
  min-height: 52px;
  padding: 10px 16px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

.choice-button:hover {
  border-color: var(--color-gold);
}

.choice-button.is-selected {
  color: #fff;
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.choice-button[hidden] {
  display: none;
}

.region-select {
  width: 100%;
  min-height: 54px;
  padding: 10px 44px 10px 16px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.estimate {
  padding: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgb(255 255 255 / 8%), transparent 30%),
    var(--color-dark);
}

.estimate__eyebrow {
  margin: 0 0 8px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.estimate h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 28px;
}

.estimate__message {
  margin: 24px 0 0;
  color: rgb(255 255 255 / 66%);
}

.estimate__list {
  margin: 24px 0 0;
}

.estimate__list > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.estimate__list dt,
.estimate__list dd {
  margin: 0;
}

.estimate__list dd {
  font-family: var(--font-serif);
  font-weight: 700;
}

.estimate__list .estimate__total {
  margin-top: 8px;
  padding-top: 20px;
  border-bottom: 0;
  font-size: 22px;
}

.estimate__button {
  width: 100%;
  margin-top: 22px;
}

.shipping-block {
  margin-top: 64px;
}

.shipping-block > h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 28px;
}

.shipping-block > p {
  margin: 8px 0 20px;
  color: var(--color-muted);
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--color-border);
}

.shipping-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  background: var(--color-surface);
}

.shipping-table th,
.shipping-table td {
  padding: 18px 16px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  white-space: nowrap;
}

.shipping-table thead th {
  color: var(--color-text);
  background: var(--color-surface-soft);
  font-family: var(--font-serif);
  font-size: 15px;
}

.shipping-table thead th span {
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
}

.shipping-table tbody th {
  background: #faf8f4;
  text-align: left;
}

.shipping-table tr:last-child th,
.shipping-table tr:last-child td {
  border-bottom: 0;
}

.shipping-table th:last-child,
.shipping-table td:last-child {
  border-right: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.contact-card {
  padding: 28px 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.contact-card > span {
  display: block;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-card > a {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.contact-card > p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.faq-item__question {
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-item__answer {
  margin-bottom: 20px;
  padding: 20px 24px;
  background: var(--color-surface-soft);
}

.brand--footer {
  color: #fff;
}

@media (max-width: 1024px) {
  .order-calculator {
    grid-template-columns: 1fr;
  }

  .choice-buttons--bottles {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-card__image--photo {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .hero__visual {
    height: auto;
    min-height: 420px;
    padding-bottom: 48px;
  }

  .hero__main-image {
    max-height: 430px;
  }

  .order-calculator__form,
  .estimate {
    padding: 30px 24px;
  }

  .choice-buttons--bottles {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-card > a {
    font-size: 18px;
  }

  .story__media img {
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .hero-price {
    grid-template-columns: 1fr;
  }

  .hero-price__item + .hero-price__item {
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .choice-buttons {
    grid-template-columns: 1fr;
  }

  .choice-buttons--bottles {
    grid-template-columns: repeat(2, 1fr);
  }
}
