:root {
  --bg: #f6f2ea;
  --paper: #fffdf8;
  --ink: #1c1916;
  --muted: #6a635b;
  --line: #e6dfd4;
  --rosso: #c81e1e;
  --rosso-dark: #9a1515;
  --verde: #1f6b45;
  --gold: #c4a574;
  --shadow: 0 24px 60px rgba(28, 25, 22, 0.08);
  --radius: 22px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

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

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rosso);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(246, 242, 234, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(28, 25, 22, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text small {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-weight: 560;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--rosso);
  color: #fff;
}

.btn-primary:hover {
  background: var(--rosso-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Hero */
.hero {
  padding: 28px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  background: var(--paper);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  margin: 14px 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-meta strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 560px;
}

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

.hero-chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 14px 16px;
  max-width: 280px;
}

.hero-chip b {
  display: block;
  font-size: 0.95rem;
}

.hero-chip span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Trust */
.trust {
  padding: 18px 0 8px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row b {
  color: var(--ink);
}

/* About */
.about {
  padding: 72px 0 30px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.photo-stack img:first-child {
  min-height: 420px;
}

.photo-stack .stack-right {
  display: grid;
  gap: 14px;
}

.stack-right img {
  min-height: 203px;
}

.about-copy {
  padding: 18px 8px 0;
}

.about-copy h2 {
  margin: 10px 0 16px;
}

.about-copy p {
  margin-bottom: 14px;
  color: var(--muted);
}

.flags {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.flag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* Services */
.services {
  padding: 64px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.card-body {
  padding: 22px;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.card.featured {
  grid-row: span 2;
}

.card.featured img {
  height: 340px;
}

/* Gallery */
.gallery {
  padding: 20px 0 70px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
}

.mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

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

.mosaic figure:first-child {
  grid-row: span 2;
}

.mosaic figcaption {
  position: absolute;
  inset: auto 12px 12px 12px;
  color: #fff;
  font-size: 0.9rem;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Method */
.method {
  padding: 20px 0 70px;
}

.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.method-visual {
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
}

.method-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
}

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

.step {
  background: var(--paper);
  border-radius: 18px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Testimonials / locations */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.3;
  margin: 12px 0 18px;
}

.quote footer {
  color: var(--muted);
  font-size: 0.9rem;
}

.places {
  padding: 20px 0 70px;
}

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

.place {
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
}

.place img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.place .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(16, 12, 10, 0.78));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
}

/* Contact */
.contact {
  padding: 10px 0 80px;
}

.contact-box {
  background: var(--ink);
  color: #f6f2ea;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.contact-copy {
  padding: clamp(28px, 4vw, 48px);
}

.contact-copy h2 {
  color: #fff;
  margin: 10px 0 14px;
}

.contact-copy p,
.contact-copy a {
  color: #d8d0c4;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

form {
  background: #241f1b;
  padding: clamp(28px, 4vw, 48px);
}

label {
  display: block;
  font-size: 0.82rem;
  margin: 12px 0 6px;
  color: #c9c0b4;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #3a332d;
  background: #1c1916;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

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

.form-note {
  margin-top: 14px;
  color: #b7ec9a;
  display: none;
}

.form-note.show {
  display: block;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .method-grid,
  .contact-box,
  .split,
  .service-grid,
  .place-grid,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .method-visual {
    min-height: 380px;
  }

  .card.featured,
  .mosaic figure:first-child {
    grid-row: auto;
  }

  .mosaic {
    grid-template-rows: 240px 220px 220px;
  }

  .nav-links,
  .nav .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .nav .btn {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-meta,
  .form-row {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }
}
