:root {
  --cream: #fbf6ed;
  --linen: #efe2d0;
  --sand: #d8c3a8;
  --clay: #9b785f;
  --coffee: #3b2a20;
  --moss: #647460;
  --sage: #dfe6d7;
  --white: #fffdf9;
  --ink: #281f1a;
  --muted: #74675d;
  --line: rgba(59, 42, 32, 0.14);
  --shadow: 0 20px 60px rgba(59, 42, 32, 0.12);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(40, 31, 26, 0.72), rgba(40, 31, 26, 0));
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--coffee);
  background: rgba(251, 246, 237, 0.94);
  box-shadow: 0 10px 30px rgba(59, 42, 32, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 1rem;
  font-weight: 700;
}

.brand small {
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 94vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) clamp(20px, 6vw, 86px) 9vh;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(40, 31, 26, 0.68), rgba(40, 31, 26, 0.28) 48%, rgba(251, 246, 237, 0.08)),
    linear-gradient(0deg, rgba(40, 31, 26, 0.36), rgba(40, 31, 26, 0.04) 44%);
}

.hero-content {
  width: min(690px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4eadc;
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy {
  width: min(620px, 100%);
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--moss);
  border-color: var(--moss);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #51604e;
  border-color: #51604e;
}

.button-secondary {
  color: var(--coffee);
  background: rgba(255, 253, 249, 0.82);
  border-color: rgba(255, 253, 249, 0.7);
}

.section .button-secondary,
.contact-section .button-secondary {
  background: transparent;
  border-color: var(--line);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-links a {
  min-height: 110px;
  padding: 26px clamp(18px, 4vw, 48px);
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 160ms ease;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links a:hover,
.quick-links a:focus-visible {
  background: var(--sage);
}

.quick-links span,
.quick-links strong {
  display: block;
}

.quick-links span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-links strong {
  margin-top: 6px;
  color: var(--coffee);
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 6vw, 86px);
}

.intro-section,
.story-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.section-text,
.story-copy,
.contact-copy,
.section-heading {
  max-width: 760px;
}

.section-text p,
.story-copy p,
.contact-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.credentials li {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.74);
}

.credentials strong,
.credentials span {
  display: block;
}

.credentials strong {
  color: var(--coffee);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.credentials span {
  margin-top: 6px;
  color: var(--muted);
}

.portrait,
.wide-photo,
.contact-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--linen);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.soft-band {
  background: linear-gradient(135deg, #f7efe4, var(--sage));
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.focus-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(59, 42, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.74);
}

.focus-grid span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--moss);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.focus-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.story-section {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.85fr);
  background: var(--white);
}

.wide-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 48% 48%;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--moss);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.keywords-section {
  text-align: center;
  background: var(--cream);
}

.keywords-section h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 930px;
  margin: 30px auto 0;
}

.keyword-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--coffee);
  background: var(--white);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  background: var(--white);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf3;
}

summary {
  cursor: pointer;
  padding: 20px 48px 20px 20px;
  color: var(--coffee);
  font-weight: 800;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--moss);
  font-size: 1.3rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, var(--cream), #f2e6d6);
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.site-footer {
  padding: 34px clamp(20px, 6vw, 86px);
  color: rgba(255, 253, 249, 0.78);
  background: var(--coffee);
}

.site-footer p {
  margin: 0 0 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 253, 249, 0.54);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--moss);
  box-shadow: 0 12px 30px rgba(59, 42, 32, 0.2);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    color: var(--coffee);
    background: rgba(251, 246, 237, 0.96);
    box-shadow: 0 10px 30px rgba(59, 42, 32, 0.08);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(251, 246, 237, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 90vh;
    padding-top: 150px;
  }

  .hero-image {
    object-position: 44% 48%;
  }

  .quick-links,
  .intro-section,
  .story-section,
  .contact-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-links a:last-child {
    border-bottom: 0;
  }

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

  .story-section .wide-photo {
    order: 2;
  }

  .story-section .story-copy {
    order: 1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

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

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 88vh;
    padding: 132px 18px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(40, 31, 26, 0.74), rgba(40, 31, 26, 0.34)),
      linear-gradient(0deg, rgba(40, 31, 26, 0.44), rgba(40, 31, 26, 0.08) 52%);
  }

  .hero-image {
    object-position: 44% center;
  }

  h1 {
    font-size: clamp(3.05rem, 18vw, 4.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .credentials,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .credentials li,
  .focus-grid article {
    min-height: auto;
  }

  .keyword-list {
    justify-content: flex-start;
  }

  .keywords-section {
    text-align: left;
  }
}
