:root {
  --coral: #ff6b6d;
  --coral-dark: #e85557;
  --blush: #fff5f5;
  --blush-deep: #ffe8e8;
  --ink: #2a2426;
  --muted: #6b6164;
  --white: #ffffff;
  --line: rgba(42, 36, 38, 0.1);
  --container: 1120px;
  --font-head: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --radius: 10px;
  --shadow: 0 24px 50px rgba(42, 36, 38, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255, 107, 109, 0.12), transparent 42%),
    radial-gradient(ellipse at 96% 8%, rgba(255, 180, 170, 0.18), transparent 38%),
    linear-gradient(180deg, #fff8f6 0%, var(--blush) 42%, #ffffff 100%);
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
.btn,
.nav a,
.logo-text,
.section-label,
.eyebrow,
.stat-num {
  font-family: var(--font-head);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--coral);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(42, 36, 38, 0.06);
  background: rgba(255, 248, 246, 0.96);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}

.footer-brand .logo-mark {
  height: 40px;
  filter: none;
}

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

.nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--coral);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--coral);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  border-radius: 6px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  border-radius: 6px;
  background: var(--coral);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(42, 36, 38, 0.18);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--coral);
  border-color: var(--coral);
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-label {
  margin: 0 0 0.55rem;
  color: var(--coral);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.section-head h2,
.page-intro h1,
.about-copy h2,
.cta-inner h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  font-weight: 600;
}

.section-lead,
.page-intro p,
.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 2rem;
}

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

.hero-copy h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  line-height: 1.12;
  font-weight: 600;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

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

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -1.2rem -1.2rem auto;
  width: 46%;
  height: 38%;
  background: linear-gradient(145deg, rgba(255, 107, 109, 0.2), rgba(255, 180, 170, 0.35));
  border-radius: 16px;
  z-index: -1;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 107, 109, 0.28);
}

.service-card img {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  font-weight: 600;
}

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

/* About split */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
}

.about-copy .btn {
  margin-top: 1.25rem;
}

.about-visual img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

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

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.stars {
  color: var(--coral);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.quote-card p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.quote-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA */
.section-cta {
  padding: 0 0 5rem;
}

.cta-banner {
  background:
    linear-gradient(135deg, rgba(255, 107, 109, 0.95), rgba(232, 85, 87, 0.92)),
    url("assets/hero.jpg") center / cover;
  border-radius: 18px;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-inner .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.cta-inner h2,
.cta-inner p {
  color: #fff;
}

.cta-inner p {
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
}

.cta-phone {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
}

.cta-phone a:hover {
  text-decoration: underline;
}

.cta-banner .btn {
  background: #fff;
  color: var(--coral-dark);
}

.cta-banner .btn:hover {
  background: var(--blush);
}

/* Page hero */
.page-hero {
  padding: 3rem 0 1rem;
}

.breadcrumb {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--coral);
}

.page-intro {
  max-width: 720px;
}

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

.stat-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.values-grid,
.why-grid,
.faq-list,
.more-services {
  display: grid;
  gap: 1rem;
}

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

.value-card,
.why-card,
.more-service,
.faq-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.value-card h3,
.why-card h3,
.more-service h3,
.faq-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.value-card p,
.why-card p,
.more-service p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-panel,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem;
}

.contact-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
}

.contact-panel p {
  color: var(--muted);
}

.contact-meta {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.contact-meta strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

.contact-meta span,
.contact-meta a {
  color: var(--muted);
}

.contact-meta a:hover {
  color: var(--coral);
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: #fffaf9;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(255, 107, 109, 0.35);
  border-color: var(--coral);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  min-height: 1.4em;
}

/* Footer */
.site-footer {
  background: #2a2224;
  color: rgba(255, 248, 246, 0.86);
  padding: 3rem 0 1.75rem;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand p {
  margin: 0.45rem 0 0;
  max-width: 36rem;
  color: rgba(255, 248, 246, 0.68);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: rgba(255, 248, 246, 0.72);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffb4b5;
}

.copyright {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 248, 246, 0.55);
}

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

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

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

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

  .header-cta {
    display: none;
  }
}

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff8f6;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
    box-shadow: 0 16px 30px rgba(42, 36, 38, 0.08);
  }

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

  .nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
  }

  .nav a.active::after {
    display: none;
  }

  .services-grid,
  .gallery-grid,
  .testimonials,
  .values-grid,
  .why-grid,
  .more-services,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
