:root {
  --orange: #F39200;
  --orange-dark: #d67d00;
  --blue: #3BAEE0;
  --blue-dark: #2a96c4;
  --cream: #FFF6EC;
  --ink: #1a1a1a;
  --muted: #5c5348;
  --white: #fff;
  --line: rgba(26, 26, 26, 0.1);
  --radius: 18px;
  --shadow: 0 18px 40px rgba(26, 26, 26, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

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

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.logo img { width: 92px; height: auto; }
.menu {
  display: flex;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.menu a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
}
.menu a:hover { color: var(--orange); }
.menu a.active { color: var(--orange); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--orange);
  color: #fff !important;
  font-weight: 650;
  letter-spacing: 0.01em;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--blue); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff !important; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 36px;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 10px;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.1rem, 4vw, 3.35rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 600; }
.lead { font-size: 1.15rem; color: var(--muted); margin: 16px 0 26px; max-width: 38ch; }
.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Sections */
section { padding: 56px 0; }
.section-head { max-width: 38rem; margin-bottom: 28px; }
.section-head p { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card img { height: 240px; width: 100%; object-fit: cover; }
.card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
}
.card h3 { font-size: 1.45rem; }
.meta { color: var(--muted); font-size: 0.95rem; margin: 0; }
.card ul { margin: 6px 0 12px; padding-left: 1.1rem; color: var(--muted); }
.card .btn { margin-top: auto; align-self: flex-start; }

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.quote p { margin: 0 0 12px; font-size: 1.05rem; }
.quote span { color: var(--muted); font-size: 0.9rem; }

/* CTA band */
.band {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.band p { margin: 8px 0 0; opacity: 0.82; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 10px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.gallery img:first-child { grid-row: 1 / 3; }

/* Page header */
.page-hero { padding: 48px 0 10px; }
.page-hero .lead { margin-bottom: 0; }

/* Form-like contact */
.box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 640px;
}
.box a.mail {
  color: var(--orange);
  font-weight: 650;
  font-size: 1.15rem;
  text-decoration: none;
}
.info-list { list-style: none; padding: 0; margin: 18px 0 0; }
.info-list li { padding: 8px 0; border-top: 1px solid var(--line); }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 650;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
footer a { text-decoration: none; }
footer a:hover { color: var(--orange); }

@media (max-width: 860px) {
  .hero, .cards, .quotes, .band, .gallery { grid-template-columns: 1fr; }
  .hero { padding-top: 28px; gap: 24px; }
  .gallery { grid-template-rows: none; }
  .gallery img:first-child { grid-row: auto; height: 220px; }
  .band { flex-direction: column; align-items: flex-start; }
  .logo img { width: 76px; }
  .menu { font-size: 0.9rem; gap: 8px 14px; }
}
