@charset "UTF-8";

/* =============================
   VARIABLES
============================= */
:root {
  --bg-main: #FFF5F7;
  --pink-primary: #E6A4B4;
  --pink-accent: #C97C8A;
  --text-main: #2B1E23;
  --text-muted: #6B5A5F;
  --border-soft: #EAD7DC;
  --white: #ffffff;
}

/* =============================
   RESET
============================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
}

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

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

/* =============================
   LAYOUT
============================= */
.site-header,
section {
  width: 100%;
  padding: 4.5rem 1.5rem;
}

.site-header {
  padding: 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

/* =============================
   HEADER / BRANDING
============================= */
.header-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.brand {
  line-height: 1.2;
}

.brand .tagline {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.brand h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

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

/* =============================
   NAV
============================= */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  font-size: 0.85rem;
}

nav a:hover {
  color: var(--pink-accent);
}

/* =============================
   HERO
============================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--pink-primary);
  opacity: 0.15;
  border-radius: 50%;
  top: -120px;
  right: -120px;
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-text p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.hero-image img {
  max-width: 340px;
  border-radius: 22px;
  margin: 0 auto;
}

/* =============================
   BUTTON
============================= */
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.7rem 2rem;
  background: var(--pink-primary);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--pink-accent);
  transform: translateY(-2px);
}

/* =============================
   HEADINGS
============================= */
h3 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

/* =============================
   GRID / CARDS
============================= */
.grid {
  display: grid;
  gap: 2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2rem;
  transition: 0.3s ease;
}

.card img {
  border-radius: 14px;
  margin-bottom: 1.2rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.card h4 {
  font-family: 'Playfair Display', serif;
}

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

.card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--pink-accent);
}

/* =============================
   CONTACT (HOMEPAGE MATCH)
============================= */

.contact-section {
  padding: 4rem 1.5rem;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.contact-intro {
  font-family: 'Inter', sans-serif;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  color: var(--text-muted);
}

.contact-list span {
  font-weight: 500;
  margin-right: 0.4rem;
  color: var(--text-main);
}

.contact-list a {
  font-weight: 400;
  text-decoration: none;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.contact-list a:hover {
  color: var(--pink-accent);
  border-color: var(--pink-accent);
}



/* =============================
   RESPONSIVE
============================= */
@media (min-width: 768px) {
  .site-header,
  section {
    max-width: 1000px;
    margin: auto;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .contact-links {
    flex-direction: row;
    justify-content: center;
  }
}
