:root {
  --ink: #1a1410;
  --ink-soft: #4a3f36;
  --cream: #f7f1e8;
  --paper: #fbf7f2;
  --sand: #e8dcc8;
  --leather: #6b3f2a;
  --espresso: #3d281c;
  --olive: #5c6b4a;
  --line: rgba(61, 40, 28, 0.14);
  --shadow: 0 18px 50px rgba(26, 20, 16, 0.14);
  --radius: 4px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--leather);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--espresso);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(251, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 247, 242, 0.96);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--espresso);
}

.logo:hover {
  color: var(--espresso);
}

.logo-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--espresso);
  box-shadow: inset 0 0 0 3px var(--cream);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 35% 18% 28% 18%;
  background: var(--sand);
  border-radius: 40% 40% 50% 50%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav-menu a:hover {
  color: var(--espresso);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--espresso);
  color: var(--cream) !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--leather);
  color: var(--cream) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--espresso);
  border-radius: 1px;
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: hero-zoom 18s ease-out forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 20, 16, 0.78) 0%, rgba(26, 20, 16, 0.45) 48%, rgba(26, 20, 16, 0.25) 100%),
    linear-gradient(to top, rgba(26, 20, 16, 0.55), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.5rem;
  max-width: 38rem;
  margin-left: max(calc((100% - min(1120px, calc(100% - 2.5rem))) / 2), 1.25rem);
  margin-right: auto;
  animation: rise 0.9s ease-out both;
}

.brand-signal {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  max-width: 32rem;
  color: rgba(247, 241, 232, 0.88);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--cream);
  color: var(--espresso);
}

.btn-primary:hover {
  background: #fff;
  color: var(--espresso);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 241, 232, 0.45);
}

.btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.btn-secondary {
  background: var(--espresso);
  color: var(--cream);
}

.btn-secondary:hover {
  background: var(--leather);
  color: var(--cream);
}

.trust-bar {
  background: var(--espresso);
  color: var(--cream);
  padding: 1.6rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 0.5rem;
  border-right: 1px solid rgba(247, 241, 232, 0.15);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-item span {
  font-size: 0.85rem;
  color: rgba(247, 241, 232, 0.72);
  font-weight: 300;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leather);
  font-weight: 600;
}

.section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--espresso);
}

.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.collection-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.collection-visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.collection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.collection-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.collection-body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--espresso);
}

.collection-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.text-link {
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--leather);
}

.text-link:hover {
  color: var(--espresso);
}

.featured {
  background:
    radial-gradient(ellipse at top right, rgba(232, 220, 200, 0.55), transparent 45%),
    var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #ebe3d6;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product:hover .product-media img {
  transform: scale(1.04);
}

.product h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--espresso);
}

.product p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  flex: 1;
}

.product-tag {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}

.featured-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.experience {
  background: var(--paper);
}

.experience-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.experience-visual,
.about-visual {
  overflow: hidden;
  min-height: 360px;
  background: var(--sand);
}

.experience-visual img,
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.experience-copy p,
.about-copy p {
  color: var(--ink-soft);
}

.checklist {
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--olive);
}

.about {
  background: #fff;
  border-block: 1px solid var(--line);
}

.about-copy blockquote {
  margin: 1.5rem 0 0;
  padding: 1rem 0 0 1.15rem;
  border-left: 3px solid var(--leather);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.35;
}

.cta-band {
  padding: 4.5rem 0;
  background:
    linear-gradient(120deg, rgba(61, 40, 28, 0.92), rgba(107, 63, 42, 0.88)),
    url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--cream);
  text-align: center;
}

.cta-inner {
  max-width: 36rem;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 600;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: rgba(247, 241, 232, 0.85);
}

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 241, 232, 0.12);
}

.site-footer h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.footer-lead {
  margin: 0 0 1.25rem;
  color: rgba(247, 241, 232, 0.72);
}

.map-frame {
  border: 1px solid rgba(247, 241, 232, 0.16);
  overflow: hidden;
  background: #2a221c;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.5rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.address-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.address-block h3 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

.address-block address {
  font-style: normal;
  color: rgba(247, 241, 232, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

.address-block a {
  color: var(--sand);
  text-decoration: none;
}

.address-block a:hover {
  text-decoration: underline;
  color: #fff;
}

.hours {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(247, 241, 232, 0.6);
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sand);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(247, 241, 232, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(247, 241, 232, 0.4);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--sand);
  background: rgba(255, 255, 255, 0.07);
}

.form-row input.is-invalid,
.form-row textarea.is-invalid {
  border-color: #d9896f;
}

.contact-form .btn-primary {
  justify-self: start;
  margin-top: 0.25rem;
}

.form-note {
  min-height: 1.35rem;
  margin: 0;
  font-size: 0.9rem;
  color: #b7c9a0;
}

.form-note.is-error {
  color: #e8a28f;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.35rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(247, 241, 232, 0.55);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(247, 241, 232, 0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

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

@media (max-width: 980px) {
  .trust-grid,
  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .experience-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    order: -1;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(1120px, calc(100% - 1.5rem));
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu li {
    border-top: 1px solid var(--line);
  }

  .nav-menu a {
    display: block;
    padding: 0.9rem 0.2rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .hero-content {
    margin-left: 1.25rem;
    padding: 4.5rem 0 3.25rem;
  }

  .trust-grid,
  .collection-grid,
  .product-grid,
  .address-block {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(247, 241, 232, 0.12);
    padding: 0.65rem 0;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .section {
    padding: 3.75rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .hero-content,
  .collection-card,
  .collection-visual img,
  .product-media img,
  .btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
