@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --ivory: #f7f4ee;
  --ivory-deep: #f0ebe1;
  --ink: #1b1a17;
  --ink-soft: #6b6459;
  --navy: #121b2e;
  --navy-soft: #1c2947;
  --gold: #a3814f;
  --gold-soft: #c9ab7a;
  --line: #e6e0d3;
  --line-strong: #d3c7ae;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  animation: pageFade .8s ease both;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; color: var(--ink); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-alt { background: var(--ivory); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .68rem;
  font-weight: 500;
  color: var(--gold);
}

.divider {
  width: 54px;
  height: 1px;
  background: var(--gold-soft);
  margin: 1.4rem auto;
}
.divider.left { margin-inline: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.1rem;
  border: 1px solid var(--ink);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.btn-outline:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: .2rem;
  transition: border-color .3s ease, color .3s ease, gap .3s ease;
}
.btn-link:hover { border-color: var(--gold); color: var(--gold); gap: .8rem; }

@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal: CSS-only (animation-timeline: view()), no JS. Browsers without support just see the content fully visible. */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: revealUp linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
  .reveal-row .reveal:nth-child(2) { animation-range: entry 6% cover 41%; }
  .reveal-row .reveal:nth-child(3) { animation-range: entry 12% cover 47%; }
  .reveal-row .reveal:nth-child(4) { animation-range: entry 18% cover 53%; }
}

/* ---------- Announcement bar ---------- */
.announcement {
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: .65rem 1rem;
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  padding-block: 1.6rem;
  position: relative;
}

.brand { text-align: center; }
.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  letter-spacing: .2em;
  font-weight: 500;
}
.brand-tagline {
  display: block;
  font-size: .58rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: .3rem;
}

.nav-toggle { position: absolute; opacity: 0; width: 1px; height: 1px; }

.hamburger {
  display: none;
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  top: 1.7rem;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 5;
}
.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}

.site-nav { display: flex; gap: 2.75rem; }
.site-nav a {
  position: relative;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: .4rem;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease, left .35s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; left: 0; }
.site-nav a.active { color: var(--gold); }

/* ---------- Hero (thin) ---------- */
.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-block: 3.5rem;
  color: var(--white);
  background:
    repeating-linear-gradient(115deg, rgba(201, 171, 122, .07) 0px, rgba(201, 171, 122, .07) 1px, transparent 1px, transparent 15px),
    linear-gradient(180deg, #0f1830 0%, #1b2846 100%);
}

.hero-content > * { animation: fadeUp .9s ease both; }
.hero-content .eyebrow { animation-delay: .1s; color: var(--gold-soft); }
.hero-content h1 {
  animation-delay: .3s;
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  letter-spacing: .05em;
  margin-block: 1rem .8rem;
}
.hero-content p {
  animation-delay: .5s;
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hero-content .divider { animation-delay: .45s; background: var(--gold-soft); }

/* ---------- Page banner (About / Contact) ---------- */
.page-banner {
  text-align: center;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.75rem, 6vw, 4rem);
}
.page-banner .eyebrow { display: block; margin-bottom: .9rem; }
.page-banner h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  letter-spacing: .04em;
}

/* ---------- Product showcase / carousel ---------- */
.showcase-heading { text-align: center; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.showcase-heading h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }

.carousel { position: relative; }

.carousel-radio { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; clip: rect(0,0,0,0); }

.carousel-viewport { position: relative; }

.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
}

.carousel-slide { display: flex; }

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  border: 1px solid var(--line);
  transition: transform .45s cubic-bezier(.25,.8,.25,1), box-shadow .45s ease, border-color .45s ease;
}
.product-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold-soft);
  box-shadow: 0 22px 34px -20px rgba(19, 28, 46, .3);
  z-index: 3;
}
.product-visual {
  position: relative;
  background: var(--ivory);
  padding: 2rem 1.25rem;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.product-visual svg { width: 138px; height: auto; transition: transform .5s ease; }
.product-card:hover .product-visual svg { transform: scale(1.06); }
.product-visual svg .stroke { fill: none; stroke: var(--navy); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; transition: stroke .4s ease; }
.product-visual svg .stroke-gold { fill: none; stroke: var(--gold); stroke-width: 1.2; stroke-linecap: round; }
.product-visual svg .dot { fill: var(--navy); transition: fill .4s ease; }
.product-card:hover .product-visual svg .stroke { stroke: var(--gold); }
.product-card:hover .product-visual svg .dot { fill: var(--gold); }

.product-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: .3rem .55rem;
  background: var(--white);
  transition: border-color .4s ease, background .4s ease, color .4s ease;
}
.product-card:hover .product-tag { background: var(--navy); border-color: var(--navy); color: var(--white); }

.product-info { padding: 1.5rem 1.1rem 1.85rem; text-align: center; background: var(--white); }
.product-info h3 { font-size: 1.25rem; }
.product-info h3 .thin { font-style: italic; font-weight: 300; color: var(--ink-soft); }

.carousel-viewport .arrow { display: none; }
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 4px 14px rgba(19, 28, 46, .08);
  transition: border-color .3s ease, background .3s ease;
  z-index: 2;
}
.arrow::before {
  content: '';
  width: 7px; height: 7px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  transition: border-color .3s ease;
}
.arrow:hover { background: var(--navy); border-color: var(--navy); }
.arrow:hover::before { border-color: var(--white); }
.arrow-prev { left: 14px; }
.arrow-prev::before { transform: rotate(-135deg); margin-left: 3px; }
.arrow-next { right: 14px; }
.arrow-next::before { transform: rotate(45deg); margin-right: 3px; }

.carousel-dots { display: none; justify-content: center; gap: .6rem; margin-top: 1.6rem; }
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease;
}

/* Below ~960px there isn't room for 4 columns: swap the static grid for a swipeable single-slide carousel driven by the hidden radios. */
@media (max-width: 960px) {
  .carousel { max-width: 460px; margin-inline: auto; }
  .carousel-viewport { overflow: hidden; }
  .carousel-track {
    display: flex;
    width: 400%;
    gap: 0;
    transition: transform .7s cubic-bezier(.65, 0, .35, 1);
  }
  .carousel-slide { width: 25%; flex-shrink: 0; }
  #slide-1:checked ~ .carousel-viewport .carousel-track { transform: translateX(0%); }
  #slide-2:checked ~ .carousel-viewport .carousel-track { transform: translateX(-25%); }
  #slide-3:checked ~ .carousel-viewport .carousel-track { transform: translateX(-50%); }
  #slide-4:checked ~ .carousel-viewport .carousel-track { transform: translateX(-75%); }

  #slide-1:checked ~ .carousel-viewport .set-1,
  #slide-2:checked ~ .carousel-viewport .set-2,
  #slide-3:checked ~ .carousel-viewport .set-3,
  #slide-4:checked ~ .carousel-viewport .set-4 { display: flex; }

  .carousel-dots { display: flex; }
  #slide-1:checked ~ .carousel-dots label[for="slide-1"],
  #slide-2:checked ~ .carousel-dots label[for="slide-2"],
  #slide-3:checked ~ .carousel-dots label[for="slide-3"],
  #slide-4:checked ~ .carousel-dots label[for="slide-4"] { background: var(--gold); border-color: var(--gold); }
}

/* ---------- Locate us ---------- */
.locate-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.locate-grid .contact-map { margin-top: 0; }
.locate-info h3 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 1rem; }
.locate-address { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.8rem; }
.locate-meta {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.1rem;
  padding-bottom: 2.1rem;
  border-bottom: 1px solid var(--line);
}
.locate-meta .eyebrow { display: block; margin-bottom: .5rem; }
.locate-meta p { font-size: .9rem; color: var(--ink-soft); }
.locate-meta p a { border-bottom: 1px solid transparent; transition: color .3s ease, border-color .3s ease; }
.locate-meta p a:hover { color: var(--gold); border-color: var(--gold-soft); }

@media (max-width: 860px) {
  .locate-grid { grid-template-columns: 1fr; }
  .locate-grid .contact-map { order: -1; }
}

/* ---------- About: story / values / stats ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.story-visual {
  aspect-ratio: 4 / 5;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.monogram {
  width: 148px; height: 148px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  letter-spacing: .12em;
  color: var(--gold);
}
.story-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 1.4rem; }
.story-text p + p { margin-top: 1rem; }
.story-text p { color: var(--ink-soft); font-size: .95rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.value-item .value-icon {
  width: 54px; height: 54px;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item .value-icon svg { width: 22px; }
.value-item .value-icon svg .stroke { fill: none; stroke: var(--gold); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.value-item h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.value-item p { font-size: .88rem; color: var(--ink-soft); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  text-align: center;
  padding-block: clamp(2rem, 4vw, 2.75rem);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--navy);
  font-weight: 500;
}
.stat span {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cta-banner {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 1.75rem; font-size: .9rem; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--gold); border-color: var(--gold); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.1rem); margin-bottom: 1.6rem; }
.contact-block { margin-bottom: 1.6rem; }
.contact-block .eyebrow { display: block; margin-bottom: .4rem; }
.contact-block p { font-size: .95rem; color: var(--ink-soft); }
.contact-block p a { border-bottom: 1px solid transparent; transition: color .3s ease, border-color .3s ease; }
.contact-block p a:hover { color: var(--gold); border-color: var(--gold-soft); }
.contact-map {
  position: relative;
  margin-top: 1.8rem;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 24px 46px -30px rgba(19, 28, 46, .4);
}
.contact-map::after {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(201, 171, 122, .45);
  pointer-events: none;
  z-index: 2;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.35) contrast(1.05) brightness(1.02);
}
.map-tag {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 3;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  padding: .4rem .75rem;
}

.contact-form { border: 1px solid var(--line); padding: clamp(1.75rem, 4vw, 2.75rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { margin-bottom: 1.4rem; }
.field label {
  display: block;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}
.field input, .field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: .6rem .1rem;
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--ink);
  background: transparent;
  transition: border-color .3s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-outline { margin-top: .5rem; width: 100%; justify-content: center; }
.form-note {
  margin-top: .9rem;
  font-size: .74rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ivory);
  padding-block: clamp(2.5rem, 5vw, 3.25rem);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: .18em;
  margin-bottom: 1.1rem;
}
.footer-nav { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.4rem; }
.footer-nav a {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .3s ease;
}
.footer-nav a:hover { color: var(--gold); }
.footer-note {
  font-size: .68rem;
  letter-spacing: .08em;
  color: var(--ink-soft);
  opacity: .8;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { order: -1; max-width: 320px; margin-inline: auto; width: 100%; }
  .values-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 700px) {
  .hamburger { display: flex; }
  .header-inner { padding-block: 1.35rem; }
  .site-nav {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    max-height: 0;
    overflow: hidden;
    width: 100%;
    transition: max-height .4s ease, margin .4s ease;
  }
  .nav-toggle:checked ~ .site-nav { max-height: 220px; margin-top: .5rem; }
  .nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .arrow { width: 34px; height: 34px; }
  .arrow-prev { left: 8px; }
  .arrow-next { right: 8px; }
}
