* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f5f4e7;
  --terracotta: #90493e;
  --charcoal: #2a2a2a;
  --stone: #8a8a82;
  --light-stone: #c4c4be;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 244, 231, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 42, 42, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.logo span {
  font-weight: 400;
  font-style: italic;
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
  position: relative;
}

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

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  margin: 5px 0;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background: var(--cream);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-image {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--light-stone), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.img-placeholder {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--stone);
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1.5px solid var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

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

.btn-filled {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}

.btn-filled:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--cream);
}

.philosophy .label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-bottom: 28px;
  display: block;
}

.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 32px;
}

.philosophy-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.philosophy-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--light-stone);
}

.philosophy-divider {
  width: 40px;
  height: 1px;
  background: var(--terracotta);
  margin: 40px 0 24px;
}

.philosophy .we-are {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
}

/* ===== WHAT WE OFFER ===== */
.offer {
  padding: 100px 0;
}

.offer .label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-bottom: 20px;
  display: block;
}

.offer h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 48px;
}

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

.offer-card {
  padding: 40px 32px;
  border: 1px solid var(--light-stone);
  transition: border-color 0.3s;
}

.offer-card:hover {
  border-color: var(--terracotta);
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.offer-card p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.65;
}

.offer-icon {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  background: var(--cream);
}

.products .label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-bottom: 20px;
  display: block;
}

.products h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 48px;
}

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

.product-card {
  cursor: pointer;
}

.product-image {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #e8e8e2, var(--cream));
  margin-bottom: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.product-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0;
}

/* ===== STANDARDS SECTION ===== */
.standards {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--cream);
}

.standards .label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-bottom: 20px;
  display: block;
}

.standards h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 48px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

.standard-card {
  text-align: center;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.standard-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
}

.standard-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--terracotta);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.standard-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 10px;
}

.standard-card p {
  font-size: 0.78rem;
  color: var(--light-stone);
  line-height: 1.55;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .standards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .standard-card {
    padding: 24px 14px;
  }
}

/* ===== CTA / CONTACT ===== */
.cta {
  padding: 100px 0;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 16px;
}

.cta p {
  color: var(--light-stone);
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  background: var(--charcoal);
  color: var(--stone);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
}

.footer .logo {
  color: var(--cream);
  margin-bottom: 8px;
  display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar .container {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 24px;
    right: 24px;
    flex-direction: column;
    gap: 0;
    background: rgba(245, 244, 231, 0.98);
    border: 1px solid rgba(42, 42, 42, 0.1);
  }

  .nav-links li + li {
    border-top: 1px solid rgba(42, 42, 42, 0.08);
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .nav-links a::after {
    display: none;
  }

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

  .mobile-toggle {
    display: block;
  }

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

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

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

  .mobile-toggle span {
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

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

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-image {
    aspect-ratio: 16/10;
    order: -1;
  }

  .philosophy-text {
    grid-template-columns: 1fr;
  }

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

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

  .standards {
    padding: 72px 0;
  }

  .standards h2 {
    margin-bottom: 28px;
  }

  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: stretch;
  }

  .standard-card {
    padding: 20px 10px;
  }

  .standard-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .standard-card h4 {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 2.6em;
  }

  .standard-card p {
    font-size: 0.74rem;
    line-height: 1.45;
  }
}

@media (max-width: 480px) {
  .nav-links {
    left: 16px;
    right: 16px;
  }

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

  .standard-card {
    padding: 18px 8px;
  }
}
