:root {
  --bg: #faf5f1;
  --bg-soft: #f3dfd1;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #2d3142;
  --muted: #7b7d88;
  --line: rgba(45, 49, 66, 0.10);
  --accent: #c96b86;
  --accent-dark: #b15472;
  --accent-blue: #456fbe;
  --accent-mint: #7ec8c2;
  --shadow: 0 18px 50px rgba(76, 54, 73, 0.10);
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 107, 134, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(126, 200, 194, 0.08), transparent 24%),
    linear-gradient(180deg, #fdfaf8 0%, var(--bg) 100%);
}

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

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

.topbar {
  background: #ecd8c6;
  color: #7c675c;
  text-align: center;
  font-size: 0.88rem;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
}

.site-header,
.hero,
.featured,
.gallery-section,
.about,
.contact-section,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  padding: 2rem 0 1rem;
}

.brand-block {
  text-align: center;
  margin-bottom: 1.5rem;
}

.brand-kicker,
.brand-subtitle,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.brand-subtitle {
  letter-spacing: 0.35em;
  margin-top: 0.25rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  margin-top: 0.25rem;
}

.logo-o {
  width: clamp(3.8rem, 7vw, 6.7rem);
  height: clamp(3.8rem, 7vw, 6.7rem);
  border: 3px solid #b54165;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}

.brand-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.logo-letter {
  display: inline-block;
}

.logo-c { color: #c8d6d1; }
.logo-u1 { color: #c28b98; }
.logo-l { color: #235fbd; }
.logo-u2 { color: #39b7ab; }
.logo-s { color: #d49a96; }

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  font-weight: 500;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mint));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 0 4rem;
}

.hero-copy h2,
.section-heading h2,
.about-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.94;
  margin: 0.55rem 0 1rem;
  font-weight: 600;
}

.hero-copy h2 span {
  color: var(--accent);
}

.hero-text,
.section-heading p,
.about-card p,
.featured-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  color: white;
  box-shadow: 0 14px 32px rgba(177, 84, 114, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--accent-dark), #375ea3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.hero-collage {
  position: relative;
  min-height: 640px;
}

.polaroid {
  position: absolute;
  width: 250px;
  background: var(--surface-strong);
  padding: 0.85rem 0.85rem 1.35rem;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.polaroid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #efece7;
}

.p1 { top: 1rem; right: 7rem; transform: rotate(-9deg); }
.p2 { top: 0; right: -0.5rem; transform: rotate(4deg); }
.p3 { top: 16rem; right: 10rem; transform: rotate(7deg); z-index: 2; }
.p4 { top: 14rem; right: 0; transform: rotate(-1deg); z-index: 3; }
.p5 { top: 26rem; right: 4rem; transform: rotate(-8deg); }

.featured,
.gallery-section,
.about,
.contact-section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featured-card,
.gallery-card,
.about-card,
.contact-box {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.featured-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.featured-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.featured-card__body {
  padding: 1.35rem;
}

.featured-card h3,
.gallery-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

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

.gallery-card {
  border-radius: 24px;
  overflow: hidden;
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ede7df;
}

.gallery-card__body {
  padding: 1rem 1rem 1.2rem;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.5rem;
}

.about-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.about-card--quote {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d78ca0, #7ec8c2);
  color: white;
}

.about-card--quote p {
  color: rgba(255,255,255,0.96);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.25;
  margin: 0;
}

.contact-box {
  border-radius: 999px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-link {
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 600;
}

.site-footer {
  padding: 0 0 2.5rem;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .hero-collage {
    min-height: 720px;
  }

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

  .about-card--quote {
    min-height: 280px;
  }
}

@media (max-width: 780px) {
  .site-header,
  .hero,
  .featured,
  .gallery-section,
  .about,
  .contact-section,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand-logo {
    gap: 0.1rem;
  }

  .brand-title {
    font-size: 3.3rem;
  }

  .logo-o {
    border-width: 2px;
  }

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

  .hero-collage {
    min-height: 600px;
  }

  .polaroid {
    width: 180px;
  }

  .p1 { top: 1rem; left: 0.5rem; right: auto; }
  .p2 { top: 0; right: 0.25rem; }
  .p3 { top: 12rem; left: 2rem; right: auto; }
  .p4 { top: 14rem; right: 1rem; }
  .p5 { top: 24rem; left: 50%; right: auto; transform: translateX(-50%) rotate(-8deg); }

  .contact-box {
    border-radius: 28px;
  }
}
