:root {
  --ink: #171412;
  --muted: #6f6962;
  --paper: #f7f3ed;
  --panel: #fffaf3;
  --terracotta: #a95434;
  --olive: #607057;
  --charcoal: #252321;
  --gold: #c7a35c;
  --line: rgba(23, 20, 18, 0.14);
  --shadow: 0 24px 70px rgba(30, 25, 20, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(247, 243, 237, 0.78);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--panel);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
}

.brand strong,
.site-footer h2 {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: #403b35;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.primary-button,
.secondary-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--panel);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.secondary-button {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.primary-button.dark {
  background: var(--charcoal);
}

.text-link {
  width: max-content;
  border-color: var(--terracotta);
  background: transparent;
  color: var(--terracotta);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  place-items: end start;
  padding: clamp(96px, 11vw, 150px) clamp(20px, 5vw, 72px);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15, 12, 10, 0.82), rgba(15, 12, 10, 0.42), rgba(15, 12, 10, 0.1)), linear-gradient(0deg, rgba(15, 12, 10, 0.76), transparent 45%);
  content: "";
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  animation: riseIn 760ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #eacb8b;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 0.98;
}

.hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: #f5eadc;
}

.trust-bar span {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
  text-align: center;
}

.section,
.split-section,
.about-preview,
.contact-section,
.story-section,
.faq-section,
.process-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.compact {
  padding-bottom: 72px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2,
.split-section h2,
.about-preview h2,
.mission-band h2,
.final-cta h2,
.story-section h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.06;
}

.section-heading p,
.split-section p,
.about-preview p,
.story-section p {
  color: var(--muted);
  line-height: 1.8;
}

.advantage-grid,
.service-grid,
.product-grid,
.blog-grid,
.difference-grid {
  display: grid;
  gap: 20px;
}

.advantage-grid {
  grid-template-columns: repeat(3, 1fr);
}

.advantage-card,
.service-card,
.blog-card,
.difference-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.74);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(45, 36, 28, 0.05);
}

.advantage-card {
  min-height: 230px;
}

.advantage-card span,
.difference-grid span,
.process-list span {
  color: var(--terracotta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
}

.advantage-card h3,
.service-card h2,
.blog-card h2 {
  margin: 22px 0 12px;
  font-size: 22px;
}

.advantage-card p,
.service-card p,
.blog-card p,
.process-list p,
.faq-list p,
.mission-band p,
.final-cta p,
.contact-card p,
.difference-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-mini-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--charcoal);
  color: #fff;
}

.service-mini-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.testimonial-band,
.mission-band,
.final-cta {
  margin: 30px 0;
  padding: clamp(66px, 9vw, 110px) clamp(22px, 7vw, 96px);
  background: var(--charcoal);
  color: #fff;
  text-align: center;
}

.quote-mark {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 78px;
  line-height: 0.7;
}

blockquote {
  max-width: 900px;
  margin: 0 auto 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.12;
}

.testimonial-band p {
  color: rgba(255, 255, 255, 0.72);
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.about-preview img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.final-cta {
  margin-bottom: 0;
}

.final-cta h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 14vw, 170px) clamp(20px, 5vw, 72px) clamp(70px, 9vw, 110px);
  background: linear-gradient(135deg, rgba(37, 35, 33, 0.94), rgba(65, 57, 49, 0.88)), url("https://images.unsplash.com/photo-1541961017774-22349e4a1262?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: #fff;
}

.page-hero::after {
  position: absolute;
  right: clamp(20px, 7vw, 100px);
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  transform: rotate(10deg);
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
}

.page-hero > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.story-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.mission-band {
  background: var(--olive);
}

.mission-band p {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.difference-grid {
  grid-template-columns: repeat(4, 1fr);
}

.difference-grid article {
  min-height: 180px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 250px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 80px minmax(180px, 250px) 1fr;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px 26px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 16px 0 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-bar button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-bar button.selected,
.filter-bar button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.product-card div {
  padding: 22px;
}

.product-card span,
.blog-card span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 10px 0 18px;
  font-size: 22px;
}

.product-card a,
.blog-card a {
  color: var(--terracotta);
  font-weight: 800;
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  min-height: 310px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
}

.contact-form,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(24px, 4vw, 42px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #37312b;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 20, 18, 0.18);
  background: #fff;
  padding: 14px 16px;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(169, 84, 52, 0.28);
  border-color: var(--terracotta);
}

.form-note {
  display: none;
  margin: 0;
  color: var(--olive);
  font-weight: 700;
}

.form-note.visible {
  display: block;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card a {
  color: var(--terracotta);
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
}

.contact-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
  margin-top: 12px;
  filter: grayscale(0.18) contrast(1.02);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #1f8f58;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(31, 143, 88, 0.32);
  animation: breathe 2.2s ease-in-out infinite;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 32px;
  padding: 54px clamp(20px, 5vw, 72px) 28px;
  background: #151311;
  color: #f7f3ed;
}

.site-footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.site-footer a {
  display: block;
  width: max-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  margin-bottom: 18px;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

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

@keyframes breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.04); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .mobile-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    background: rgba(255, 250, 243, 0.98);
    opacity: 0;
    transition: max-height 240ms ease, opacity 180ms ease;
  }

  .mobile-nav.open {
    max-height: 420px;
    border-color: var(--line);
    opacity: 1;
  }

  .mobile-nav a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .trust-bar,
  .advantage-grid,
  .service-grid,
  .product-grid,
  .blog-grid,
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .about-preview,
  .story-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-preview img {
    height: 440px;
  }

  .process-list article {
    grid-template-columns: 62px 1fr;
    gap: 0 16px;
  }

  .process-list p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    top: 70px;
  }

  .hero {
    min-height: 720px;
    padding: 96px 20px 54px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-actions,
  .social-links {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .text-link {
    width: 100%;
  }

  .trust-bar,
  .advantage-grid,
  .service-mini-grid,
  .service-grid,
  .product-grid,
  .blog-grid,
  .difference-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-bar span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section,
  .split-section,
  .about-preview,
  .contact-section,
  .story-section,
  .faq-section,
  .process-section {
    width: min(100% - 32px, 1180px);
    padding: 62px 0;
  }

  .section-heading h2,
  .split-section h2,
  .about-preview h2,
  .mission-band h2,
  .final-cta h2,
  .story-section h2 {
    font-size: 34px;
  }

  .about-preview img {
    height: 320px;
  }

  .page-hero {
    padding: 104px 20px 72px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .process-list p {
    grid-column: auto;
  }

  .contact-form,
  .contact-card {
    padding: 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
