:root {
  --bg: #fbfaf8;
  --bg-soft: #f3efe9;
  --surface: #ffffff;
  --ink: #2c2a27;
  --ink-soft: #5c574f;
  --muted: #8a847a;
  --line: #e6e0d7;
  --accent: #9a7b6a;
  --accent-deep: #7a5f51;
  --accent-soft: #d4c4b8;
  --sage: #7d8a7a;
  --shadow: 0 18px 50px rgba(44, 42, 39, 0.06);
  --radius: 18px;
  --max: 1120px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #f4ebe3 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #ebe8e1 0%, transparent 50%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.section-lead {
  max-width: 38rem;
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.05rem;
}

.section-head {
  margin-bottom: 2.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 248, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(44, 42, 39, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-deep);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent);
  color: #fff;
}

.btn-soft {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-soft:hover,
.btn-soft:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
}

/* Hero */
.hero {
  padding: 2.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: min(68vh, 560px);
  object-fit: cover;
  border-radius: 28px 28px 28px 80px;
  box-shadow: var(--shadow);
}

.hero-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 16rem;
  border: 1px solid rgba(230, 224, 215, 0.8);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem 1.55rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}

.service-card .icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--accent-deep);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  margin: 0 0 0.55rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Gallery strip */
.gallery {
  padding: 0 0 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.15fr;
  gap: 0.85rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

/* Care */
.care {
  background: linear-gradient(180deg, transparent, rgba(243, 239, 233, 0.65) 20%, rgba(243, 239, 233, 0.65) 80%, transparent);
}

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

.care-visual {
  position: relative;
}

.care-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.care-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.care-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.care-points .num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  padding-top: 0.15rem;
}

.care-points strong {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.care-points span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.why-item {
  background: var(--surface);
  border-top: 2px solid var(--accent-soft);
  border-radius: 0 0 16px 16px;
  padding: 1.5rem 1.2rem;
  min-height: 100%;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  font-weight: 550;
}

.why-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

/* Tips */
.tips-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.tips-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.tips-list {
  display: grid;
  gap: 1rem;
}

.tip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
}

.tip h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 650;
}

.tip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
}

/* Contact */
.contact {
  background: var(--bg-soft);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-info {
  padding: 2.5rem;
}

.contact-info dl {
  margin: 1.75rem 0 0;
  display: grid;
  gap: 1.25rem;
}

.contact-info dt {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
  font-weight: 650;
}

.contact-info dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.placeholder {
  color: var(--muted);
  font-style: italic;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

/* Legal / footer extras */
.legal-block {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.legal-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
}

.legal-block p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0 0 0.75rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.copyright {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .care-grid,
  .tips-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid figure {
    height: 180px;
  }

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

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

  .hero-visual img,
  .care-visual img,
  .tips-visual img {
    height: 360px;
  }

  .contact-visual {
    order: -1;
  }

  .contact-visual img {
    min-height: 240px;
    max-height: 280px;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 4.5rem 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.6rem;
    box-shadow: var(--shadow);
  }

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

  .nav a,
  .nav .btn {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
  }

  .nav .btn {
    margin-top: 0.35rem;
    justify-content: center;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(4) {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 1.5rem;
  }

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

  .contact-info {
    padding: 1.75rem;
  }
}
