@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap");

:root {
  --green: #143b34;
  --green-deep: #0a2924;
  --green-soft: #dce8df;
  --wine: #6c1f32;
  --gold: #c9a453;
  --gold-light: #eed99a;
  --cream: #f7f1e5;
  --paper: #fffdf8;
  --ink: #1e2824;
  --muted: #66716c;
  --line: rgba(20, 59, 52, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --shadow: 0 18px 55px rgba(17, 45, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.08;
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.1vw, 4.2rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.45rem;
}

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  min-height: 36px;
  padding: 7px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  color: #fff9e8;
  background: var(--green-deep);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement a {
  color: var(--gold-light);
  font-weight: 600;
}

.announcement-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: 82px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  color: var(--green);
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  background: var(--green);
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong,
.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 4px;
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2.2vw, 31px);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.primary-nav > a:not(.nav-call) {
  position: relative;
  padding: 29px 0;
}

.primary-nav > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after {
  transform: scaleX(1);
}

.nav-call {
  padding: 11px 17px;
  color: #fff;
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--green);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #183a31;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 28, 23, 0.92) 0%, rgba(6, 28, 23, 0.76) 32%, rgba(6, 28, 23, 0.18) 64%, rgba(6, 28, 23, 0.05) 100%),
    linear-gradient(0deg, rgba(6, 28, 23, 0.55) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding: 100px 0 155px;
}

.hero-content h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.5vw, 6.55rem);
  letter-spacing: -0.05em;
}

.hero-content > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

.hero-actions,
.visit-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 49px;
  padding: 13px 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-gold {
  color: var(--green-deep);
  background: var(--gold-light);
}

.button-gold:hover {
  background: #f5e5ae;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-ghost:hover {
  color: var(--green);
  background: #fff;
}

.button-light {
  color: var(--green);
  background: var(--cream);
}

.button-dark {
  color: #fff;
  background: var(--green);
}

.button-whatsapp {
  color: #fff;
  background: #167b4f;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-signature {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 0;
  left: max(24px, calc((100% - 1180px) / 2));
  min-height: 105px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-signature div {
  padding: 25px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-signature div:first-child {
  padding-left: 0;
}

.hero-signature div:last-child {
  border-right: 0;
}

.hero-signature strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.hero-signature span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.category-strip {
  min-height: 74px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  color: var(--green);
  background: var(--cream);
  border-bottom: 1px solid rgba(201, 164, 83, 0.35);
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-strip a {
  position: relative;
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.category-strip a::before {
  margin-right: 12px;
  color: var(--gold);
  content: "◆";
  font-size: 0.48rem;
  vertical-align: middle;
}

.section {
  width: var(--container);
  margin-inline: auto;
  padding-block: 115px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.7fr);
  gap: 9vw;
  align-items: end;
}

.intro-section h2 {
  max-width: 740px;
}

.intro-copy {
  padding-left: 30px;
  border-left: 1px solid var(--gold);
}

.intro-copy p {
  margin: 0 0 15px;
  color: var(--muted);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.collections {
  padding-top: 30px;
}

.section-heading {
  margin-bottom: 47px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.section-heading h2 {
  max-width: 820px;
}

.text-link {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.36fr 0.82fr;
  grid-template-rows: repeat(2, 330px);
  gap: 20px;
}

.collection-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--green-soft);
}

.collection-large {
  grid-row: 1 / 3;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.22, .61, .36, 1);
}

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

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 24, 20, 0.82) 0%, rgba(4, 24, 20, 0.06) 60%);
}

.collection-label {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.collection-label small {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.collection-label strong {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 500;
}

.collection-label em {
  margin-top: 9px;
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-note {
  margin: 16px 0 0;
  color: #7a817d;
  font-size: 0.74rem;
}

.heritage-band {
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  color: #fff;
  background: var(--wine);
}

.heritage-image {
  min-height: 620px;
}

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

.heritage-copy {
  padding: clamp(60px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heritage-year {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-style: italic;
  line-height: 1;
}

.heritage-copy h2 {
  margin-bottom: 28px;
}

.heritage-copy > p:not(.eyebrow):not(.heritage-year) {
  max-width: 590px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.79);
}

.heritage-copy .button {
  margin-top: 18px;
  align-self: flex-start;
}

.owner-card {
  max-width: 520px;
  margin: 22px 0 4px;
  padding: 18px 20px;
  display: grid;
  border: 1px solid rgba(238, 217, 154, 0.34);
}

.owner-card > span,
.thank-you-owner > span {
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.owner-card strong,
.thank-you-owner strong {
  margin-top: 3px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.owner-card p {
  margin: 5px 0 0 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.8rem;
}

.product-preview {
  padding-bottom: 135px;
}

.product-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.mini-product {
  overflow: hidden;
  background: #f1eadc;
}

.mini-product > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.mini-product:hover > img {
  transform: scale(1.025);
}

.mini-product > div {
  padding: 23px 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
}

.mini-product span,
.product-info > span {
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mini-product h3 {
  margin: 8px 0 16px;
}

.mini-product a,
.product-info a {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}

.nri-section {
  position: relative;
  padding: clamp(75px, 9vw, 135px) max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(55px, 10vw, 145px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 164, 83, 0.16), transparent 30%),
    var(--green);
}

.nri-section::before {
  position: absolute;
  top: 24px;
  right: 24px;
  bottom: 24px;
  left: 24px;
  pointer-events: none;
  border: 1px solid rgba(238, 217, 154, 0.16);
  content: "";
}

.nri-lead,
.nri-steps {
  position: relative;
  z-index: 1;
}

.nri-lead h2 {
  margin-bottom: 26px;
}

.nri-lead > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.77);
}

.country-list {
  margin-top: 38px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.country-list span {
  padding: 8px 12px;
  color: var(--gold-light);
  border: 1px solid rgba(238, 217, 154, 0.35);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nri-steps article {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.nri-steps article:first-child {
  padding-top: 0;
}

.nri-steps article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.nri-steps h3 {
  margin-bottom: 7px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
}

.nri-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.nri-steps .button {
  margin-top: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 260px;
  padding: 42px 36px;
  background: var(--paper);
}

.service-grid article > span {
  color: var(--gold);
  font-size: 1.2rem;
}

.service-grid h3 {
  margin: 26px 0 12px;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.enquiry-section {
  padding: clamp(75px, 9vw, 130px) max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 9vw, 130px);
  color: #fff;
  background: var(--wine);
}

.enquiry-copy h2 {
  margin-bottom: 26px;
}

.enquiry-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.enquiry-direct {
  margin-top: 36px;
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.enquiry-direct span {
  margin-bottom: 3px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-direct a {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.enquiry-form {
  padding: clamp(30px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

.field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field > span {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-wide {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(20, 59, 52, 0.24);
  border-radius: 0;
  font: inherit;
  font-size: 0.9rem;
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.consent-field {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.77rem;
}

.consent-field input {
  margin-top: 4px;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.visit-section {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--cream);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
  filter: saturate(0.65) contrast(0.95);
}

.visit-copy {
  padding: clamp(65px, 8vw, 115px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-copy h2 {
  margin-bottom: 28px;
}

.visit-copy address {
  margin-bottom: 26px;
  color: var(--muted);
  font-style: normal;
}

.hours {
  max-width: 450px;
  margin: 0 0 35px;
  border-top: 1px solid var(--line);
}

.hours div {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.hours dd {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  position: relative;
  padding: 70px max(24px, calc((100% - 1180px) / 2)) 30px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 60px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-deep);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.footer-brand div {
  display: grid;
}

.footer-brand span,
.footer-contact span {
  margin-top: 5px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.56);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.83rem;
}

.footer-contact a {
  color: var(--gold-light);
  font-size: 1.05rem;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 25px 0 0;
  padding-top: 22px;
  font-size: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-actions {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-call,
.floating-whatsapp {
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(52, 9, 20, 0.28);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-call {
  background: var(--wine);
}

.floating-whatsapp {
  background: #167b4f;
}

.whatsapp-mark {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 0.55rem;
  letter-spacing: 0;
}

/* Products page */
.products-hero {
  min-height: 465px;
  padding: 95px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 40, 34, 0.97), rgba(9, 40, 34, 0.67)),
    url("assets/gold-jhumkas.jpg") center 44% / cover no-repeat;
}

.products-hero > div {
  max-width: 850px;
}

.products-hero h1 {
  margin-bottom: 23px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  letter-spacing: -0.048em;
}

.products-hero div > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.catalogue {
  padding-bottom: 130px;
}

.catalogue-heading > p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.filters {
  margin-bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  padding: 10px 16px;
  color: var(--green);
  background: transparent;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 22px;
}

.product-card {
  min-width: 0;
}

.product-card[hidden] {
  display: none;
}

.product-image {
  overflow: hidden;
  background: #ede5d6;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-info {
  padding: 22px 6px 0;
}

.product-info h3 {
  margin: 7px 0 10px;
}

.product-info p {
  min-height: 54px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.catalogue-disclaimer {
  margin-top: 65px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  color: var(--muted);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-size: 0.78rem;
}

.catalogue-disclaimer strong {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalogue-disclaimer p {
  margin: 0;
}

.category-directory {
  margin-top: 95px;
  padding: 55px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 75px;
  background: var(--cream);
}

.category-directory h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.category-directory > div:first-child > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
}

.category-directory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.category-directory-list span {
  padding: 10px 0;
  color: var(--green);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.category-directory-list span:nth-child(odd) {
  padding-right: 20px;
}

.category-directory-list span:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.products-nri {
  padding-top: 105px;
  padding-bottom: 105px;
}

.nri-steps.compact article {
  padding-block: 20px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 10vw, 150px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 38px 22px 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.12rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Enquiry confirmation */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.thank-you-main {
  padding: 80px 24px;
  display: grid;
  place-items: center;
  flex: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 164, 83, 0.2), transparent 35%),
    var(--cream);
}

.thank-you-card {
  width: min(760px, 100%);
  padding: clamp(42px, 7vw, 80px);
  text-align: center;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  margin-bottom: 24px;
  color: var(--green);
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}

.thank-you-card > p:not(.eyebrow) {
  max-width: 560px;
  margin-inline: auto;
  color: var(--muted);
}

.thank-you-card .hero-actions {
  margin-top: 32px;
  justify-content: center;
}

.thank-you-owner {
  margin-top: 42px;
  padding-top: 22px;
  display: grid;
  border-top: 1px solid var(--line);
}

.thank-you-owner > span {
  color: var(--wine);
}

.thank-you-owner strong {
  color: var(--green);
}

.simple-footer {
  padding: 20px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--green-deep);
  font-size: 0.78rem;
}

.simple-footer a {
  color: var(--gold-light);
}

@media (max-width: 990px) {
  .site-header {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 100;
    top: 110px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 50px 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--green);
    background: var(--paper);
    overflow-y: auto;
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav > a:not(.nav-call) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .primary-nav > a:not(.nav-call)::after {
    display: none;
  }

  .nav-call {
    margin-top: 25px;
    padding: 15px 18px;
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .intro-section {
    gap: 55px;
  }

  .heritage-band,
  .visit-section,
  .enquiry-section {
    grid-template-columns: 1fr;
  }

  .heritage-image {
    min-height: 530px;
  }

  .visit-map iframe {
    min-height: 420px;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .announcement {
    min-height: 33px;
    padding-inline: 12px;
    gap: 8px;
    font-size: 0.57rem;
    letter-spacing: 0.07em;
  }

  .announcement span:nth-of-type(2),
  .announcement-dot {
    display: none;
  }

  .announcement a {
    margin-left: auto;
  }

  .announcement a:first-of-type {
    display: none;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    font-size: 0.54rem;
  }

  .primary-nav {
    top: 107px;
  }

  .hero {
    min-height: 700px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 28, 23, 0.98) 0%, rgba(6, 28, 23, 0.84) 44%, rgba(6, 28, 23, 0.17) 100%);
  }

  .hero-content {
    padding: 230px 0 147px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .hero-signature {
    right: 16px;
    left: 16px;
  }

  .hero-signature div {
    padding: 18px 12px;
  }

  .hero-signature div:first-child {
    padding-left: 0;
  }

  .hero-signature strong {
    font-size: 1.25rem;
  }

  .hero-signature span {
    font-size: 0.52rem;
  }

  .category-strip {
    justify-content: flex-start;
    padding-inline: 16px;
  }

  .section {
    padding-block: 78px;
  }

  .intro-section,
  .nri-section,
  .faq-section,
  .category-directory {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-left: 20px;
  }

  .section-heading,
  .catalogue-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 480px 330px 330px;
  }

  .collection-large {
    grid-row: auto;
  }

  .heritage-band {
    min-height: 0;
  }

  .heritage-image {
    min-height: 430px;
  }

  .heritage-copy,
  .visit-copy {
    padding: 65px 24px;
  }

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

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

  .field-wide {
    grid-column: auto;
  }

  .category-directory {
    padding: 36px 24px;
    gap: 35px;
  }

  .nri-section {
    gap: 55px;
  }

  .nri-section::before {
    inset: 12px;
  }

  .service-grid article {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-legal {
    grid-column: auto;
  }

  .products-hero {
    min-height: 500px;
  }

  .products-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

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

  .catalogue-disclaimer {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-info p {
    min-height: 0;
  }
}

@media (max-width: 440px) {
  .hero-actions .button,
  .visit-actions .button {
    width: 100%;
  }

  .collection-grid {
    grid-template-rows: 410px 300px 300px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .floating-call span:last-child {
    display: none;
  }

  .floating-call {
    padding-inline: 13px;
  }

  .floating-whatsapp {
    padding: 10px 13px;
  }

  .simple-footer {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
