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

:root {
  --terracotta: #C2704E;
  --terracotta-dark: #A85A3A;
  --terracotta-light: #D4956F;
  --sand: #F5F0E8;
  --sand-dark: #E8DFD0;
  --sand-mid: #EDE5D6;
  --charcoal: #1A1A1A;
  --charcoal-light: #3A3A3A;
  --warm-gray: #6B6560;
  --warm-gray-light: #9B9490;
  --white: #FEFCF9;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Label / Eyebrow ── */
.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--terracotta);
  margin-bottom: 16px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 0;
  transition: all 0.35s var(--ease-out);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--sand);
  border: 1px solid var(--charcoal);
}

.btn-primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--sand);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 252, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-dark);
  transition: transform 0.3s var(--ease-out);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  text-transform: uppercase;
}

.nav-logo-mark {
  font-size: 1.1rem;
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a::after:hover {
  width: 100%;
}

.nav-cta {
  color: var(--terracotta) !important;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease-out);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--charcoal);
  transition: color 0.25s;
}

.mobile-menu-link:hover {
  color: var(--terracotta);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 64px);
}

.hero-content {
  max-width: 480px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--charcoal);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 40px;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
}

.hero-meta-dot {
  color: var(--terracotta);
}

/* Hero Image Stack */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-img-stack {
  position: relative;
  height: 100%;
}

.hero-img {
  overflow: hidden;
  position: absolute;
}

.hero-img-main {
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hero-img-main:hover img {
  transform: scale(1.03);
}

.hero-img-accent {
  bottom: 8%;
  left: -8%;
  width: 55%;
  height: 40%;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

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

.hero-img-accent-bottom {
  top: 5%;
  left: -5%;
  width: 45%;
  height: 30%;
  border: 4px solid var(--white);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sand-dark);
}

/* ── Marquee ── */
.marquee {
  background: var(--charcoal);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  flex-shrink: 0;
}

.marquee-sep {
  color: var(--terracotta) !important;
  font-size: 0.5rem !important;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ── */
.section {
  padding: 120px 0;
}

.section:nth-child(even) {
  background: var(--sand);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.stat {
  border-top: 1px solid var(--sand-dark);
  padding-top: 20px;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
}

/* ── Products ── */
.products-header {
  margin-bottom: 64px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.product-card-img {
  overflow: hidden;
  aspect-ratio: 5/4;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.product-card-body {
  padding: 28px;
}

.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* ── Feature Strip ── */
.feature-strip {
  background: var(--sand);
  padding: 64px 0;
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
}

.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 16px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--terracotta);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
}

/* ── Location ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-details {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
}

.location-detail-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray-light);
  padding-top: 4px;
}

.location-detail-value {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.location-detail-value a {
  color: var(--terracotta);
  transition: color 0.25s;
}

.location-detail-value a:hover {
  color: var(--terracotta-dark);
}

.location-map {
  min-height: 400px;
  background: var(--sand-dark);
  border: 1px solid var(--sand-dark);
  overflow: hidden;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 32px;
  max-width: 360px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--charcoal);
  transition: color 0.25s;
}

.contact-method:hover {
  color: var(--terracotta);
}

.contact-method svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-method span {
  font-size: 0.95rem;
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--sand);
  padding: 40px;
  border: 1px solid var(--sand-dark);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand-dark);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-input::placeholder {
  color: var(--warm-gray-light);
}

.form-input:focus {
  border-bottom-color: var(--terracotta);
}

.form-textarea {
  min-height: 100px;
  line-height: 1.6;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: var(--sand-mid);
  color: var(--charcoal);
  font-size: 0.9rem;
}

.form-success svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand-tagline {
  font-size: 0.85rem;
  color: var(--warm-gray);
  max-width: 240px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--sand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
}

/* ── Scroll Reveal (progressive enhancement) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-visual {
    min-height: 400px;
    max-width: 500px;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }

  .about-stats {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-map {
    min-height: 300px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-headline {
    font-size: clamp(2.6rem, 10vw, 3.6rem);
  }

  .hero-img-stack {
    min-height: 360px;
  }

  .hero-img-main {
    width: 100%;
    height: 100%;
  }

  .hero-img-accent {
    left: 0;
    width: 60%;
    height: 35%;
    bottom: 0;
  }

  .hero-img-accent-bottom {
    display: none;
  }

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

  .feature-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .about-stats {
    flex-direction: column;
  }

  .section {
    padding: 80px 0;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    justify-content: center;
  }

  .feature-strip-inner {
    grid-template-columns: 1fr;
  }

  .location-detail {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
