:root {
  --bg: #faf7f6;
  --bg-alt: #ffffff;
  --bg-soft: #f4ebe9;
  --text: #1f1b1b;
  --muted: #736f6e;
  --accent: #f0a6b4;
  --accent-soft: #fce1e7;
  --border-soft: #e3d4d0;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background: radial-gradient(
    circle at top left,
    #fff8f9 0,
    #faf7f6 40%,
    #f8f3f2 100%
  );
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Layout utilities */

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 40px;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.section-heading p {
  color: var(--muted);
}

/* Header & nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 246, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 212, 208, 0.7);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.04em;
}

.logo span {
  padding-left: 4px;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 16px;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
  padding: 80px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  margin: 10px 0 16px;
}

.hero-sub {
  color: var(--muted);
  max-width: 460px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 8px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

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

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-color: var(--border-soft);
}

.btn.ghost:hover {
  background: #fff;
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn.full {
  width: 100%;
}

/* Hero image card */

.hero-image-card {
  background: var(--bg-soft);
  border-radius: 28px;
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-img {
  border-radius: 22px;
  height: 360px;
  background-size: cover;
  background-position: center;
}

.hero-tag {
  position: absolute;
  left: 24px;
  bottom: 26px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-tag span {
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(250, 247, 246, 0.92);
  border: 1px solid rgba(227, 212, 208, 0.8);
}

/* About */

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.about-img {
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  height: 360px;
  box-shadow: var(--shadow-soft);
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  margin-bottom: 12px;
}

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

.about-text p + p {
  margin-top: 8px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.about-highlights h3 {
  margin: 0;
  font-size: 1.3rem;
}

.about-highlights p {
  margin-top: 4px;
  font-size: 0.88rem;
}

/* Portfolio */

.portfolio {
  background: var(--bg-alt);
}

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

.portfolio-item {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.portfolio-item img {
  width: 100%;
  display: block;
  height: 240px;
  object-fit: cover;
}

.portfolio-item figcaption {
  padding: 10px 14px 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Services */

.services {
  background: var(--bg-soft);
}

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

.service-card {
  background: #fff;
  padding: 24px 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(227, 212, 208, 0.7);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 4px;
}

.service-card .price {
  margin-top: 0;
  font-weight: 500;
  color: var(--accent);
}

.service-card ul {
  padding-left: 18px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Testimonials */

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

.testimonial {
  background: #fff;
  padding: 22px 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(227, 212, 208, 0.7);
  font-size: 0.95rem;
}

.testimonial p {
  margin-top: 0;
  color: var(--muted);
}

.testimonial h4 {
  margin-bottom: 0;
  margin-top: 14px;
  font-size: 0.9rem;
}

/* Contact */

.contact {
  background: var(--bg-alt);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

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

.contact-details {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.contact-details li + li {
  margin-top: 6px;
}

.contact-details a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 166, 180, 0.4);
}

.contact-details a:hover {
  border-bottom-color: var(--accent);
}

/* Contact form */

.contact-form {
  background: var(--bg-soft);
  padding: 24px 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(227, 212, 208, 0.8);
}

.contact-form label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  font-family: inherit;
  font-size: 0.95rem;
  margin-top: 4px;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(240, 166, 180, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(227, 212, 208, 0.7);
  padding: 18px 0 28px;
  background: rgba(250, 247, 246, 0.9);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-inner .small {
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: -1;
  }

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

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

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  /* Mobile nav */
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 60px;
    right: 4%;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 10px 14px;
    flex-direction: column;
    gap: 8px;
    min-width: 170px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 6px 4px;
    font-size: 0.92rem;
  }

  .hero-inner {
    gap: 32px;
  }

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

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

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 64px;
  }

  .hero-image-card {
    padding: 12px 12px 16px;
  }

  .hero-img {
    height: 280px;
  }

  .about-img {
    height: 280px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}