:root {
  --bg: #fff7ec;
  --surface: #fffdf9;
  --surface-soft: #fff3e0;
  --text: #332216;
  --muted: #4a392d;
  --line: #ebdac2;
  --accent: #dc6c2b;
  --accent-strong: #b5521f;
  --secondary: #1f7a6b;
  --secondary-soft: #d9f0ea;
  --radius: 22px;
  --shadow: 0 18px 40px rgba(92, 51, 20, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto auto 0 0;
  width: 42vw;
  height: 42vw;
  pointer-events: none;
  z-index: -2;
  filter: blur(3px);
}

body::before {
  top: -10vw;
  right: -8vw;
  left: auto;
  background:
    radial-gradient(circle at 42% 44%, rgba(236, 147, 88, 0.34) 0, rgba(236, 147, 88, 0.02) 58%),
    radial-gradient(circle at 74% 16%, rgba(214, 100, 36, 0.2) 0, rgba(214, 100, 36, 0) 46%);
}

body::after {
  bottom: -16vw;
  left: -12vw;
  background:
    radial-gradient(circle at 35% 40%, rgba(48, 148, 130, 0.24) 0, rgba(48, 148, 130, 0.04) 56%),
    radial-gradient(circle at 70% 68%, rgba(217, 107, 43, 0.2) 0, rgba(217, 107, 43, 0) 42%);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: "Merriweather", serif;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 5.3rem 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.4rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(255, 247, 236, 0.86);
  border-bottom: 1px solid rgba(208, 166, 130, 0.28);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(71, 40, 19, 0.1);
  background: rgba(255, 247, 236, 0.95);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 800;
  font-size: 1.04rem;
  color: #2f1e14;
}

.brand-mark {
  background: linear-gradient(145deg, #f29a55, #d06425);
  color: #fff;
  padding: 0.38rem 0.56rem;
  border-radius: 10px;
  letter-spacing: 0.03em;
}

.brand-domain {
  letter-spacing: 0.03em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-weight: 600;
}

.nav-list a {
  position: relative;
  font-size: 0.93rem;
  color: #3d291d;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.24rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #3f2a1e;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

.hero {
  padding-top: 4.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 2.2rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.55rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.74rem 1.18rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 24px rgba(181, 82, 31, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 26px rgba(181, 82, 31, 0.34);
}

.btn-outline {
  color: #523827;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  border-color: #d9b58e;
}

.stats {
  margin-top: 1.65rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.stats li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 0.82rem 0.72rem;
}

.stats strong {
  display: block;
  font-size: 1.01rem;
  line-height: 1.2;
}

.stats span {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  border: 1px solid #f0d8bf;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff6ea, #ffedd7);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  padding: 0.5rem 0.76rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(62, 35, 16, 0.12);
}

.note-1 {
  top: 1rem;
  right: 1rem;
}

.note-2 {
  bottom: 1.1rem;
  left: 1rem;
}

.about {
  border-block: 1px solid rgba(232, 207, 183, 0.5);
  background:
    linear-gradient(to bottom, rgba(255, 253, 247, 0.6), rgba(255, 253, 247, 0.85)),
    repeating-linear-gradient(-45deg, rgba(255, 232, 207, 0.1), rgba(255, 232, 207, 0.1) 14px, rgba(255, 253, 247, 0.6) 14px, rgba(255, 253, 247, 0.6) 28px);
}

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

.about-image {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.traits {
  display: grid;
  gap: 0.85rem;
}

.trait-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
}

.trait-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.trait-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.care-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 1.06rem;
  background: rgba(255, 255, 255, 0.88);
}

.care-card h3 {
  margin-top: 0.4rem;
  font-size: 1.1rem;
  margin-bottom: 0.34rem;
}

.care-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 0.16rem 0.64rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  background: var(--secondary-soft);
}

.gallery {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 246, 233, 0.5)),
    radial-gradient(circle at 80% 0%, rgba(227, 141, 82, 0.24), rgba(227, 141, 82, 0) 36%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(100, 57, 29, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(100, 57, 29, 0.16);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-copy {
  padding: 0.95rem 0.92rem 1.1rem;
}

.gallery-copy h3 {
  font-size: 1.04rem;
  margin-bottom: 0.26rem;
}

.gallery-copy p {
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-wrap {
  width: min(860px, 100%);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 0.8rem;
}

.faq-item + .faq-item {
  margin-top: 0.76rem;
}

.faq-question {
  width: 100%;
  border: 0;
  padding: 0.8rem 2.2rem 0.8rem 0.3rem;
  text-align: left;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: "Merriweather", serif;
  font-size: 1.02rem;
  position: relative;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  right: 0.42rem;
  top: 50%;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
  max-height: none;
  overflow: visible;
}

.faq-answer p {
  color: var(--muted);
  padding: 0 0.3rem 0.92rem;
  font-size: 0.98rem;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(0);
}

.cta {
  padding-top: 4.8rem;
  padding-bottom: 6.1rem;
}

.cta-box {
  border-radius: 22px;
  border: 1px solid #efcfae;
  background:
    linear-gradient(130deg, rgba(255, 241, 221, 0.96), rgba(255, 250, 242, 0.94)),
    radial-gradient(circle at 90% 20%, rgba(36, 122, 106, 0.2), rgba(36, 122, 106, 0) 38%);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.1rem;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 0.56rem;
}

.cta-box p {
  color: var(--muted);
  max-width: 53ch;
  margin-bottom: 0.95rem;
  font-size: 1rem;
}

.contact-list {
  border: 1px solid rgba(223, 189, 157, 0.66);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
}

.contact-list li {
  padding: 0.82rem 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
}

.contact-list li + li {
  border-top: 1px dashed rgba(223, 189, 157, 0.7);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-list strong {
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid rgba(218, 182, 151, 0.44);
  background: rgba(255, 251, 244, 0.84);
}

.footer-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #5f4537;
  font-size: 0.9rem;
}

.footer-wrap a {
  font-weight: 700;
  color: var(--accent-strong);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-visual {
    max-width: 690px;
    margin: 0 auto;
  }

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

  .cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .container {
    width: min(1120px, calc(100% - 2rem));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(280px, calc(100vw - 2rem));
    padding: 0.95rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 251, 245, 0.98);
    box-shadow: 0 18px 38px rgba(74, 43, 19, 0.16);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.88rem;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-list.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

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

@media (max-width: 620px) {
  .section {
    padding: 4.4rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.78rem, 10vw, 2.3rem);
  }

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

  .floating-note {
    display: none;
  }

  .care-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 0.98rem;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.7rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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