@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Parisienne&display=swap');

:root {
  --cream: #f8f2ed;
  --paper: #fffaf6;
  --ink: #171313;
  --muted: #5f5550;
  --rose: #d78c8d;
  --rose-dark: #b86e72;
  --rose-soft: #f4dada;
  --line: #dbc8c0;
  --shadow: 0 20px 55px rgba(38, 25, 22, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
}

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

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

/* =========================
   HEADER
========================= */

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 96px;
  padding: 18px 34px;
  display: grid;
  grid-template-columns: 190px 1fr 168px;
  gap: 20px;
  align-items: start;
  color: white;
}

.site-logo img {
  width: 145px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding-top: 18px;
}

.nav a {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: 15px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--rose);
}

.book-btn {
  justify-self: end;
  background: var(--rose);
  color: white;
  padding: 18px 28px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.book-btn span {
  margin-left: 12px;
}

.menu-toggle {
  display: none;
  color: white;
  background: none;
  border: 0;
  font-size: 32px;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 1000px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background-image: url('assets/IMG_1023.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.66), rgba(0,0,0,.20) 44%, rgba(0,0,0,.65)),
    radial-gradient(circle at center, rgba(0,0,0,.08), rgba(0,0,0,.7));
}

.hero-center {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 200px 20px 80px;
}

.hero-center p {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 15px;
}

h1 {
  font-size: clamp(52px, 7vw, 82px);
  line-height: .9;
  margin: 0;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
}

.script,
.hello,
.portfolio-script {
  font-family: 'Parisienne', cursive;
  color: var(--rose);
}

.script {
  font-size: 55px;
  line-height: .9;
  margin: 4px 0 20px;
}

.hero-cats {
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 17px;
  margin-bottom: 28px;
}

.hero-cats span {
  color: var(--rose);
}

.main-cta,
.soft-btn {
  display: inline-block;
  background: var(--rose);
  color: white;
  padding: 17px 34px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.main-cta span,
.soft-btn span {
  margin-left: 12px;
}

/* =========================
   ABOUT SECTION - FIXED
========================= */

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(320px, 440px);
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 90px 10%;
  background:
    radial-gradient(circle at 3% 10%, rgba(215, 140, 141, .2), transparent 22%),
    var(--paper);
  overflow: hidden;
}

.about-copy {
  width: 100%;
  max-width: 470px;
  align-self: center;
  justify-self: end;
}

.hello {
  font-size: 32px;
  line-height: 1;
}

.about-copy h2,
.contact-section h2,
.story-section h2 {
  margin: 0;
  font-size: 64px;
  letter-spacing: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.small-heart {
  color: var(--rose);
  letter-spacing: 15px;
  margin: 8px 0 22px;
}

.about-copy p,
.story-card p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 390px;
  align-self: center;
  justify-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -500px;
}

.about-photo {
  width: 100%;
  max-width: 390px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 9px solid white;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.stamp {
  position: absolute;
  right: -58px;
  bottom: -28px;
  width: 132px;
  height: 132px;
  border: 2px solid var(--rose);
  border-radius: 50%;
  background: rgba(255,250,246,.85);
  color: var(--rose-dark);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  transform: rotate(-10deg);
}

.stamp span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.stamp strong {
  font-family: Parisienne, cursive;
  font-size: 34px;
  font-weight: 400;
}

/* =========================
   SERVICES
========================= */

.services-section {
  padding: 58px 11% 82px;
  background: linear-gradient(to bottom, #fffaf6, #f8f2ed);
  text-align: center;
}

.section-title {
  display: grid;
  grid-template-columns: 100px auto 100px;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 42px;
}

.section-title span {
  height: 1px;
  background: var(--rose);
}

.section-title h2,
.portfolio-title h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 500;
}

.section-title div {
  grid-column: 1 / -1;
  color: var(--rose);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 34px;
}

.icon {
  color: var(--rose);
  font-size: 46px;
  margin-bottom: 18px;
}

.service-grid h3 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 16px;
  margin: 0 0 14px;
}

.service-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.center-btn,
.gallery-btn {
  margin-top: 8px;
  padding: 14px 28px;
}

/* =========================
   PORTFOLIO
========================= */

.portfolio-section {
  background: var(--cream);
  padding: 58px 0 44px;
  text-align: center;
}

.portfolio-script {
  font-size: 28px;
  line-height: 1;
}

.portfolio-title h2 {
  font-size: 35px;
  margin-bottom: 28px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 0 6px;
}

.portfolio-grid img {
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.gallery-btn {
  margin-top: 22px;
}

/* =========================
   STORY
========================= */

.story-section {
  padding: 78px 10%;
  background: var(--paper);
}

.story-section h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 48px;
}

.story-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
  background: white;
  padding: 18px;
  box-shadow: var(--shadow);
}

.story-card img {
  height: 360px;
  width: 100%;
  object-fit: cover;
}

.eyebrow {
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
}

.story-card h3 {
  font-size: 42px;
  margin: 0 0 10px;
}

/* =========================
   CONTACT
========================= */

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  padding: 82px 13%;
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 140, 141, .22), transparent 26%),
    var(--cream);
}

.contact-lines {
  font-family: Montserrat, sans-serif;
  font-size: 14px !important;
  line-height: 2 !important;
}

form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  font-family: Montserrat, sans-serif;
  font-size: 15px;
}

.form-btn {
  width: fit-content;
  font-family: Cormorant Garamond, serif;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 42px 20px;
}

.footer img {
  width: 150px;
  margin: 0 auto 15px;
}

.footer p {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}

/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 950px) {
  .topbar {
    position: absolute;
    grid-template-columns: 120px 1fr 50px;
    height: 78px;
    padding: 12px 18px;
    align-items: center;
  }

  .site-logo img {
    width: 105px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .book-btn {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    background: rgba(18,15,15,.96);
    padding: 22px;
    flex-direction: column;
    gap: 18px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    font-size: 14px;
    padding: 8px 0;
  }

  .hero {
    min-height: 680px;
    background-position: center;
  }

  .hero-center {
    padding-top: 160px;
  }

  .hero-center p {
    font-size: 17px;
  }

  .hero-cats {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .script {
    font-size: 44px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 70px 8%;
    text-align: center;
  }

  .about-copy {
    max-width: 620px;
    justify-self: center;
  }

  .about-photo-wrap {
    max-width: 380px;
    justify-self: center;
  }

  .stamp {
    right: -10px;
    bottom: -35px;
  }

  .story-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

  .portfolio-grid img {
    height: 235px;
  }

  .story-section,
  .contact-section {
    padding: 62px 7%;
    text-align: center;
  }

  .form-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 610px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: 4px;
  }

  .hero-center {
    padding-top: 140px;
  }

  .main-cta,
  .soft-btn {
    width: 100%;
    max-width: 310px;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-copy h2,
  .contact-section h2 {
    font-size: 48px;
    letter-spacing: 7px;
  }

  .about-section {
    padding: 60px 6%;
  }

  .about-photo-wrap {
    max-width: 320px;
  }

  .stamp {
    width: 105px;
    height: 105px;
    right: -6px;
    bottom: -28px;
  }

  .stamp strong {
    font-size: 28px;
  }

  .stamp span {
    font-size: 8px;
  }

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

  .section-title {
    grid-template-columns: 50px auto 50px;
  }

  .section-title h2,
  .portfolio-title h2 {
    font-size: 24px;
    letter-spacing: 5px;
  }

  .portfolio-grid img {
    height: 260px;
  }

  .story-card img {
    height: 240px;
  }
}