:root {
  --black: #090908;
  --ink: #171512;
  --charcoal: #24231f;
  --forest: #383836;
  --silver: #b8bbb7;
  --paper: #f1eee8;
  --white: #fffdf8;
  --gold: #c9a45f;
  --gold-light: #e5cc91;
  --gold-dark: #80612a;
  --line: rgba(201, 164, 95, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, Arial, sans-serif; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }

.site-header { min-height: 100vh; background: var(--black); color: var(--white); }

.topline {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 36px;
  min-height: 88px;
  padding: 10px max(24px, calc((100vw - 1440px) / 2));
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; width: 150px; height: 66px; overflow: hidden; }
.brand img { width: 132px; object-fit: contain; filter: contrast(1.08); }
.menu-button { display: none; }

.tab-nav { display: flex; align-items: center; justify-content: flex-end; gap: 28px; min-width: 0; }
.tab, .nav-dropdown > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  color: var(--black);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  list-style: none;
  transition: color 180ms ease;
}
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary span { color: var(--gold-dark); font-size: 1rem; transition: transform 220ms ease; }
.nav-dropdown[open] > summary span { transform: rotate(45deg); }
.tab::after, .nav-dropdown > summary::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.tab:hover, .tab:focus-visible, .tab.active, .nav-dropdown > summary:hover, .nav-dropdown > summary:focus-visible { color: var(--gold-dark); outline: none; }
.tab:hover::after, .tab:focus-visible::after, .tab.active::after, .nav-dropdown[open] > summary::after { transform: scaleX(1); }

.book-tab { min-height: 44px; padding: 0 18px; background: var(--black); color: var(--white); border: 1px solid var(--black); }
.book-tab::after { content: none; }
.book-tab:hover, .book-tab:focus-visible { background: var(--gold); color: var(--black); border-color: var(--gold); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  width: 310px;
  padding: 10px;
  background: rgba(15, 15, 13, 0.98);
  border: 1px solid rgba(229, 204, 145, 0.32);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.nav-dropdown[open] .dropdown-menu { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.dropdown-menu a { display: grid; gap: 5px; padding: 14px 16px; color: var(--white); border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: background 180ms ease, padding-left 180ms ease; }
.dropdown-menu a:last-child { border-bottom: 0; }
.dropdown-menu a:hover, .dropdown-menu a:focus-visible { padding-left: 20px; background: rgba(201, 164, 95, 0.12); outline: none; }
.dropdown-menu strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.18rem; }
.dropdown-menu small { color: rgba(255, 253, 248, 0.62); font-size: 0.7rem; }

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.72fr);
  align-items: end;
  gap: 64px;
  padding: 112px max(28px, calc((100vw - 1380px) / 2)) 84px;
  background: linear-gradient(90deg, rgba(7, 7, 6, 0.96) 0%, rgba(7, 7, 6, 0.7) 54%, rgba(7, 7, 6, 0.35) 100%), url("./assets/gq-shop-wide.avif") center / cover;
  isolation: isolate;
}
.hero::after { position: absolute; inset: auto 0 0; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-copy { max-width: 790px; }
.eyebrow { margin: 0 0 16px; color: var(--gold); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.eyebrow.dark { color: var(--gold-dark); }
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; }
h1 { max-width: 720px; margin: 0; color: var(--white); font-size: 6.8rem; line-height: 0.84; text-transform: uppercase; overflow-wrap: normal; }
.hero-lead { max-width: 650px; margin: 26px 0 0; color: rgba(255, 253, 248, 0.79); font-size: 1.18rem; line-height: 1.7; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 1px solid currentColor; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); outline: none; }
.button.primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.button.primary:hover, .button.primary:focus-visible { background: var(--gold-light); border-color: var(--gold-light); }
.button.ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.48); }
.button.ghost:hover, .button.ghost:focus-visible { background: var(--white); color: var(--black); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.16); color: rgba(255, 253, 248, 0.64); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.hero-trust span::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 9px 1px 0; background: var(--gold); }

.hero-booking { align-self: end; padding: 12px 26px 24px; background: rgba(13, 13, 11, 0.88); border: 1px solid rgba(229, 204, 145, 0.3); backdrop-filter: blur(16px); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34); }
.booking-head { display: flex; align-items: center; justify-content: space-between; min-height: 64px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.booking-head p { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; font-weight: 700; }
.booking-head > span { color: var(--gold); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; }
.hero-booking > a:not(.booking-cta) { display: grid; gap: 7px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: padding-left 180ms ease, color 180ms ease; }
.hero-booking > a:not(.booking-cta):hover, .hero-booking > a:not(.booking-cta):focus-visible { padding-left: 8px; color: var(--gold-light); outline: none; }
.hero-booking a span { display: flex; align-items: baseline; gap: 12px; }
.hero-booking b { color: var(--gold); font-size: 0.68rem; }
.hero-booking strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.28rem; }
.hero-booking small { padding-left: 31px; color: rgba(255, 253, 248, 0.56); line-height: 1.45; }
.booking-cta { display: flex; justify-content: space-between; margin-top: 22px; color: var(--gold); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }

main { background: var(--paper); }
.service-intro { display: grid; grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.1fr); gap: 90px; align-items: center; padding: 112px max(28px, calc((100vw - 1300px) / 2)); background: var(--white); }
.service-portrait { position: relative; min-height: 590px; }
.service-portrait img { width: 88%; height: 560px; object-fit: cover; }
.service-portrait > div { position: absolute; right: 0; bottom: 0; width: 230px; padding: 28px; background: var(--forest); color: var(--white); border-left: 3px solid var(--gold); }
.service-portrait span { display: block; color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 3.4rem; line-height: 1; font-weight: 700; }
.service-portrait small { display: block; margin-top: 8px; line-height: 1.5; }
.service-copy { max-width: 720px; }
.service-copy h2, .section-heading h2, .guide-band h2, .contact h2 { margin: 0; font-size: 4.5rem; line-height: 0.95; }
.service-copy > p:last-of-type { max-width: 620px; margin: 28px 0; color: #615b52; font-size: 1.06rem; line-height: 1.8; }
.text-link { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 7px; border-bottom: 1px solid var(--gold-dark); color: var(--gold-dark); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201, 164, 95, 0.28); border-top: 1px solid rgba(201, 164, 95, 0.28); border-bottom: 1px solid rgba(201, 164, 95, 0.28); }
.service-grid article { min-height: 500px; display: flex; flex-direction: column; padding: 46px; background: var(--black); color: var(--white); }
.service-grid article:nth-child(2) { background: var(--forest); }
.service-number { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 3.8rem; font-weight: 700; line-height: 1; }
.service-kicker { margin: 34px 0 10px; color: var(--gold-light); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.service-grid h3 { margin: 0 0 18px; font-size: 2.25rem; }
.service-grid article > p:not(.service-kicker) { margin: 0; color: rgba(255, 253, 248, 0.68); line-height: 1.7; }
.service-grid ul { display: grid; gap: 9px; margin: 24px 0 28px; padding: 20px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 253, 248, 0.84); list-style: none; }
.service-grid li::before { content: "+"; margin-right: 10px; color: var(--gold); }
.service-grid article > a { margin-top: auto; color: var(--gold); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }

.shop-section { overflow: hidden; padding: 110px max(28px, calc((100vw - 1380px) / 2)); background: var(--black); color: var(--white); }
.shop-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.shop-heading.visible { opacity: 1; transform: translateY(0); }
.shop-heading h2 { margin: 0; font-size: 4.8rem; line-height: 0.92; }
.shop-heading h2 span { color: var(--gold); font-size: 6rem; }
.carousel-controls { display: flex; gap: 8px; }
.carousel-button { width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.25); background: transparent; color: var(--white); cursor: pointer; font-size: 1.15rem; transition: background 180ms ease, color 180ms ease, border-color 180ms ease; }
.carousel-button:hover, .carousel-button:focus-visible { background: var(--gold); color: var(--black); border-color: var(--gold); outline: none; }
.carousel-button:disabled { cursor: default; color: #666; border-color: rgba(255, 255, 255, 0.08); background: transparent; }
.product-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 31%); gap: 16px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.product-track::-webkit-scrollbar { display: none; }
.product-card { min-width: 0; padding: 12px 12px 22px; background: #151513; border: 1px solid rgba(255, 255, 255, 0.1); scroll-snap-align: start; transition: border-color 220ms ease, transform 220ms ease; }
.product-card:hover, .product-card:focus-visible { transform: translateY(-5px); border-color: rgba(201, 164, 95, 0.72); outline: none; }
.product-image { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #ece7df; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.product-card:hover img { transform: scale(1.035); }
.product-image span { position: absolute; top: 12px; left: 12px; padding: 7px 10px; background: var(--gold); color: var(--black); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; }
.product-card > p { margin: 20px 8px 5px; color: var(--silver); font-size: 0.68rem; text-transform: uppercase; }
.product-card h3 { min-height: 55px; margin: 0 8px 12px; font-size: 1.55rem; line-height: 1.05; }
.price { margin: 0 8px; color: var(--gold-light); font-weight: 800; }
.price s { margin-right: 7px; color: #777; font-weight: 400; }
.shop-more { margin-top: 32px; color: var(--white); border-color: rgba(255, 255, 255, 0.32); }
.shop-more:hover, .shop-more:focus-visible { background: var(--gold); color: var(--black); border-color: var(--gold); }

.guide-band, .contact { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 66px max(28px, calc((100vw - 1300px) / 2)); }
.guide-band { background: var(--gold); }
.guide-band .eyebrow { color: var(--black); }
.guide-band h2 { font-size: 3.6rem; }
.guide-band .button { background: var(--black); color: var(--white); border-color: var(--black); }

.testimonials { padding: 105px max(28px, calc((100vw - 1300px) / 2)); background: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
figure { margin: 0; padding: 30px; background: var(--paper); border-top: 3px solid var(--gold); }
figure img { width: 76px; height: 76px; margin-bottom: 26px; border-radius: 50%; object-fit: cover; }
blockquote { min-height: 92px; margin: 0 0 24px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.95rem; line-height: 1.08; }
figcaption { color: #696158; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }

.contact { grid-template-columns: 1fr 0.7fr auto; background: var(--forest); color: var(--white); }
.contact h2 { font-size: 3.9rem; }
.contact p { line-height: 1.7; }
.hours { display: grid; gap: 7px; padding-left: 30px; border-left: 1px solid rgba(255, 255, 255, 0.22); }
.hours span { color: var(--gold-light); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.hours strong { margin-bottom: 8px; font-size: 0.9rem; }
.contact-actions { flex-direction: column; margin: 0; }
.contact-actions a { min-width: 160px; min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.35); color: var(--white); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; transition: background 180ms ease, color 180ms ease; }
.contact-actions a:hover, .contact-actions a:focus-visible { background: var(--gold); color: var(--black); outline: none; }

footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px max(28px, calc((100vw - 1300px) / 2)); background: var(--black); color: rgba(255, 255, 255, 0.72); font-size: 0.75rem; }
footer p { margin: 0; }

@media (max-width: 1120px) {
  .tab-nav { gap: 18px; }
  h1 { font-size: 5.5rem; }
  .hero { grid-template-columns: minmax(0, 1fr) 360px; gap: 36px; }
  .service-grid article { padding: 34px; }
  .contact { grid-template-columns: 1fr 1fr; }
  .contact-actions { grid-column: 1 / -1; flex-direction: row; }
}

@media (max-width: 900px) {
  .topline { grid-template-columns: 120px 44px; justify-content: space-between; min-height: 78px; padding-inline: 20px; }
  .brand { width: 112px; height: 58px; }
  .brand img { width: 104px; }
  .menu-button { display: inline-grid; width: 44px; height: 42px; place-content: center; gap: 5px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .menu-button span { width: 20px; height: 2px; background: var(--gold-dark); transition: transform 220ms ease, opacity 220ms ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .tab-nav { position: absolute; inset: 100% 0 auto; display: grid; align-content: start; gap: 0; max-height: 0; padding: 0 22px; overflow: hidden; background: rgba(255, 253, 248, 0.99); border-bottom: 1px solid var(--line); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: max-height 420ms ease, padding 300ms ease, opacity 220ms ease, transform 300ms ease; }
  .tab-nav.open { max-height: calc(100vh - 78px); padding-block: 12px 24px; overflow-y: auto; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .tab, .nav-dropdown > summary { width: 100%; min-height: 52px; justify-content: space-between; border-bottom: 1px solid rgba(0, 0, 0, 0.08); font-size: 0.82rem; }
  .tab::after, .nav-dropdown > summary::after { content: none; }
  .book-tab { justify-content: center; margin-top: 12px; color: var(--white); }
  .nav-dropdown { width: 100%; }
  .dropdown-menu { position: static; width: 100%; max-height: 0; padding: 0; overflow: hidden; background: #141411; border: 0; opacity: 1; transform: none; transition: max-height 300ms ease, padding 300ms ease; }
  .nav-dropdown[open] .dropdown-menu { max-height: 330px; padding: 8px; transform: none; }
  .hero { min-height: 880px; grid-template-columns: 1fr; align-items: end; gap: 48px; padding: 90px 24px 62px; }
  .hero-copy { max-width: 700px; }
  h1 { font-size: 5.4rem; }
  .hero-booking { width: min(560px, 100%); }
  .service-intro { grid-template-columns: 1fr; gap: 56px; padding: 80px 24px; }
  .service-portrait { min-height: 520px; }
  .service-portrait img { height: 500px; }
  .service-copy h2, .section-heading h2 { font-size: 3.8rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 430px; }
  .product-track { grid-auto-columns: minmax(250px, 48%); }
  .shop-heading h2 { font-size: 3.8rem; }
  .shop-heading h2 span { font-size: 4.8rem; }
  .quote-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  h1 { font-size: 4rem; }
  .hero { min-height: 840px; padding-top: 72px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .button, .contact-actions a { width: 100%; }
  .hero-trust { gap: 8px 14px; }
  .hero-booking { padding: 8px 18px 20px; }
  .service-portrait { min-height: 390px; }
  .service-portrait img { width: 92%; height: 370px; }
  .service-portrait > div { width: 190px; padding: 22px; }
  .service-copy h2, .section-heading h2 { font-size: 3rem; }
  .service-grid article { min-height: 470px; padding: 30px 24px; }
  .shop-section, .testimonials { padding: 76px 20px; }
  .shop-heading { align-items: flex-start; }
  .shop-heading h2 { font-size: 2.8rem; }
  .shop-heading h2 span { display: block; font-size: 4rem; }
  .carousel-controls { padding-top: 22px; }
  .carousel-button { width: 42px; height: 42px; }
  .product-track { grid-auto-columns: 82%; }
  .guide-band, .contact { grid-template-columns: 1fr; padding: 54px 22px; }
  .guide-band h2, .contact h2 { font-size: 3rem; }
  .hours { padding: 20px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.22); border-left: 0; }
  .contact-actions { grid-column: auto; }
  footer { flex-direction: column; padding-inline: 22px; }
}
