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

:root {
  --ink: #242321;
  --muted: #6f6a64;
  --soft: #f7f2ec;
  --cream: #fbf8f3;
  --line: rgba(36,35,33,.12);
  --dark: #181715;
  --accent: #b89b72;
  --accent-dark: #90754f;
  --white: #fff;
  --shadow: 0 22px 70px rgba(32, 27, 22, .12);
  --radius: 28px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: translateY(-200%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  z-index: 1000;
  border-radius: 999px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(251, 248, 243, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(36,35,33,.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 218px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

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

.nav-cta {
  border: 1px solid var(--ink);
  color: var(--ink) !important;
  padding: 11px 18px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 13px;
  transition: .2s ease;
}

.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  padding: 86px 0 68px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .98;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

h1 {
  font-size: clamp(56px, 8vw, 100px);
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -.035em;
}

h3 {
  font-size: 32px;
  letter-spacing: -.02em;
}

.hero-text {
  max-width: 560px;
  font-size: 20px;
  color: var(--muted);
  margin: 26px 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  border: 1px solid var(--ink);
  cursor: pointer;
}

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

.button.primary {
  background: var(--ink);
  color: white;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

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

.hero-collage figure {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ddd;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-main {
  inset: 0 auto 0 18%;
  width: 58%;
}

.collage-small {
  width: 42%;
  height: 44%;
}

.collage-small.top {
  right: 0;
  top: 8%;
}

.collage-small.bottom {
  left: 0;
  bottom: 8%;
}

.intro-strip {
  background: var(--dark);
  color: white;
  padding: 24px 0;
}

.strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.strip-grid p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
}

.strip-grid span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: 104px 0;
}

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

.section-heading.wide {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 50px;
  align-items: end;
  max-width: none;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  margin: 18px 0 0;
}

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

.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(32, 27, 22, .07);
}

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

.service-card div {
  padding: 28px;
}

.service-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.portfolio-section {
  background: var(--soft);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter {
  border: 1px solid rgba(36,35,33,.18);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 12px;
}

.filter.active,
.filter:hover {
  background: var(--ink);
  color: white;
}

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

.gallery-item {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0 0 18px;
  display: block;
  break-inside: avoid;
  border-radius: 22px;
  overflow: hidden;
  background: #ddd;
  cursor: zoom-in;
  box-shadow: 0 12px 36px rgba(32, 27, 22, .08);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform .45s ease, opacity .25s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item.hidden-item {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.coverage-section {
  padding-top: 0;
}

.coverage-card {
  background: var(--dark);
  color: white;
  border-radius: 36px;
  padding: 58px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 52px;
  align-items: center;
}

.coverage-card h2,
.coverage-card .eyebrow {
  color: white;
}

.coverage-card .eyebrow {
  color: #d9c4a5;
}

.coverage-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}

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

.package-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  min-height: 288px;
  display: flex;
  flex-direction: column;
}

.package-card p {
  color: var(--muted);
  margin: 16px 0 28px;
}

.package-card span {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 12px;
}

.contact-section {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  color: var(--ink);
  font-weight: 700;
}

.contact-form {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(36,35,33,.16);
  border-radius: 16px;
  min-height: 52px;
  padding: 14px 16px;
  font: inherit;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184,155,114,.14);
}

.contact-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.hidden {
  display: none;
}

.form-note {
  margin: 0;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  background: var(--dark);
  color: white;
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr .8fr;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-grid img {
  width: 260px;
  margin-bottom: 18px;
}

.footer-grid p {
  color: rgba(255,255,255,.7);
  max-width: 390px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,.78);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 88vh;
  max-width: min(1100px, 92vw);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

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

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

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  background: var(--soft);
}

.success-card {
  width: min(680px, 100%);
  background: white;
  padding: 48px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-card img {
  width: 260px;
  margin: 0 auto 24px;
}

.success-card p {
  color: var(--muted);
}

.privacy-content {
  padding: 80px 0;
  max-width: 850px;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 86px 20px auto 20px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .section-heading.wide,
  .about-grid,
  .coverage-card,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

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

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

  .coverage-card {
    padding: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 170px;
  }

  .header-inner {
    min-height: 74px;
  }

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

  .collage-main {
    left: 8%;
    width: 68%;
  }

  .collage-small {
    width: 46%;
  }

  .strip-grid {
    flex-direction: column;
    gap: 8px;
  }

  .strip-grid span {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .service-card img {
    height: 280px;
  }

  .masonry-gallery {
    columns: 2 150px;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
    border-radius: 16px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .success-card {
    padding: 30px 20px;
  }
}


.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
