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

:root {
  --cream: #f7f0e9;
  --paper: #fffaf5;
  --bone: #e9ddd2;
  --brown: #5b2f18;
  --deep: #221410;
  --taupe: #806a5d;
  --gold: #b9926f;
  --line: rgba(91, 47, 24, .16);
  --shadow: 0 28px 90px rgba(34, 20, 16, .18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Montserrat, sans-serif;
  background: var(--cream);
  color: var(--deep);
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  color: var(--paper);
  transition: .3s ease;
}

.header.scrolled {
  background: rgba(247, 240, 233, .92);
  backdrop-filter: blur(16px);
  color: var(--deep);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--paper);
  padding: 8px;
  object-fit: contain;
}

.header.scrolled .brand img {
  width: 70px;
  height: 70px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 700;
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 11px 17px;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  color: currentColor;
  width: 36px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 8px 0;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 150px 6vw 90px;
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  height: 100%;
  filter: saturate(.94) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(rgba(34, 20, 16, .25), rgba(34, 20, 16, .64)),
    radial-gradient(circle, transparent 20%, rgba(0,0,0,.2));
}

.hero-content {
  position: relative;
  max-width: 980px;
  z-index: 2;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero .kicker {
  color: #e5c6aa;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: .98;
}

h1 {
  font-size: clamp(3.5rem, 8.8vw, 8.6rem);
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

h3 {
  font-size: 2.25rem;
}

.hero p:not(.kicker) {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: rgba(255, 250, 245, .86);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
  transition: .25s ease;
  cursor: pointer;
}

.button-light {
  background: var(--paper);
  color: var(--deep);
}

.button-outline {
  border-color: rgba(255, 250, 245, .72);
  color: var(--paper);
}

.button-dark {
  background: var(--brown);
  color: var(--paper);
  width: 100%;
}

.button:hover {
  transform: translateY(-2px);
}

.intro {
  padding: 90px 8vw;
  text-align: center;
}

.intro p {
  max-width: 1000px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1.07;
  color: var(--brown);
}

.section,
.gallery-section,
.contact {
  padding: 105px 6vw;
}

.section-head {
  max-width: 900px;
  margin-bottom: 48px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px;
}

.story-card {
  height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-card:nth-child(even) {
  margin-top: 70px;
}

.story-card img {
  height: 100%;
  transition: transform .7s ease;
}

.story-card:hover img {
  transform: scale(1.05);
}

.services {
  background: var(--paper);
}

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

.service-card {
  padding: 34px;
  background: var(--cream);
  border: 1px solid var(--line);
  min-height: 320px;
}

.service-card.featured {
  background: var(--brown);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.service-card span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 24px;
}

.service-card p {
  color: var(--taupe);
  margin-top: 14px;
}

.service-card.featured p {
  color: rgba(255, 250, 245, .76);
}

.experience {
  padding: 110px 6vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  background: var(--bone);
}

.experience-copy p:not(.kicker) {
  margin-top: 24px;
  color: var(--taupe);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px;
}

.step span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .18em;
}

.step p {
  color: var(--taupe);
  margin-top: 8px;
}

.gallery {
  columns: 3 280px;
  column-gap: 18px;
}

.gallery-item {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0 0 18px;
  background: transparent;
  cursor: zoom-in;
  break-inside: avoid;
  overflow: hidden;
}

.gallery-item img {
  border-radius: 0;
  transition: transform .5s ease, filter .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.quote {
  padding: 120px 8vw;
  text-align: center;
  color: var(--paper);
  background: var(--deep);
}

.quote p {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 6.5vw, 6.5rem);
  line-height: 1;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}

.contact-copy p:not(.kicker) {
  margin-top: 22px;
  color: var(--taupe);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-links a {
  color: var(--brown);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.form {
  background: var(--paper);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .7rem;
  font-weight: 800;
  color: var(--brown);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 15px;
  font: inherit;
  color: var(--deep);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.form small {
  display: block;
  margin-top: 12px;
  color: var(--taupe);
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  background: var(--brown);
  color: var(--paper);
  padding: 13px 18px;
  border-radius: 999px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 12, 9, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-size: 3rem;
  cursor: pointer;
}

.footer {
  padding: 36px 6vw;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--taupe);
  background: var(--paper);
}

.footer img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .story-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .header {
    padding: 14px 5vw;
  }

  .brand img {
    width: 70px;
    height: 70px;
  }

  .header.scrolled .brand img {
    width: 62px;
    height: 62px;
  }

  .menu-button {
    display: block;
    z-index: 40;
  }

  .nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 5vw;
    background: var(--cream);
    color: var(--deep);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    text-align: left;
    place-items: end start;
    padding: 140px 5vw 80px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .intro,
  .section,
  .gallery-section,
  .experience,
  .contact,
  .quote {
    padding: 78px 5vw;
  }

  .story-grid,
  .service-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card:nth-child(even) {
    height: 440px;
    margin-top: 0;
  }

  .form {
    padding: 26px;
  }

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