/* ===========================================================
   KETSYMAGIC — Design System
   Ink navy + antique brass + parchment. Fraunces for display,
   Inter for body. Built lean on purpose.
=========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #0A0A0B;
  --ink-light: #16161A;
  --brass: #CBA766;
  --brass-bright: #F5D8B5;
  --parchment: #F7F3EA;
  --parchment-dim: #EAE3D3;
  --ink-text: #1B1B18;
  --grey-text: #6B6862;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--parchment);
  color: var(--ink-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

p { color: var(--grey-text); }

.lede {
  font-size: 1.15rem;
  color: var(--grey-text);
  max-width: 46ch;
}

/* thin gold rule - the recurring structural device */
.rule {
  width: 56px;
  height: 2px;
  background: var(--brass);
  margin: 20px 0;
  border: none;
}
.rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-brass {
  background: var(--brass);
  color: var(--ink);
}
.btn-brass:hover { background: var(--brass-bright); }

.btn-outline {
  background: transparent;
  border-color: rgba(247,243,234,0.35);
  color: var(--parchment);
}
.btn-outline:hover { border-color: var(--brass); color: var(--brass-bright); }

.btn-outline-dark {
  background: transparent;
  border-color: rgba(27,27,24,0.25);
  color: var(--ink-text);
}
.btn-outline-dark:hover { border-color: var(--brass); color: #8a6e2f; }

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,17,22,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(198,161,91,0.18);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--parchment);
  letter-spacing: 0.01em;
}
.brand span { color: var(--brass); }

.brand-logo img {
  height: 46px;
  width: auto;
}

.corporate-logos-bundle {
  background: white;
  border-radius: 8px;
  padding: 32px 40px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.corporate-logos-bundle img { border-radius: 3px; }

.footer-logo img {
  height: 30px;
  width: auto;
  margin-bottom: 14px;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: rgba(247,243,234,0.78);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brass-bright); }

.nav-cta {
  background: var(--brass);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-cta:hover { background: var(--brass-bright); }

.nav-toggle { display: none; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(198,161,91,0.18);
  }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--parchment);
    font-size: 1.6rem;
    cursor: pointer;
  }
}
@media (min-width: 781px) {
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--parchment);
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.55;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,17,22,0.35) 0%, rgba(14,17,22,0.55) 55%, rgba(14,17,22,0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
  padding-top: 140px;
}

.hero h1 { max-width: 16ch; color: var(--parchment); }

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--ink-light);
  padding: 26px 0;
  border-bottom: 1px solid rgba(198,161,91,0.15);
}

.trust-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: rgba(247,243,234,0.65);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

/* ---------- Sections ---------- */

section { padding: 100px 0; }

.section-dark {
  background: var(--ink);
  color: var(--parchment);
}
.section-dark p { color: rgba(247,243,234,0.68); }
.section-dark h2 { color: var(--parchment); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

/* ---------- Reaction wall (signature element) ---------- */

.reaction-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.reaction-wall a {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

.reaction-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(1.03);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.reaction-wall a:hover img {
  transform: scale(1.035);
  filter: saturate(1.15) brightness(1.03);
}

@media (max-width: 900px) {
  .reaction-wall { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .reaction-wall { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Path cards (Weddings / Corporate / Parties) ---------- */

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

.path-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.path-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.path-card:hover img { transform: scale(1.06); opacity: 0.85; }

.path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,17,22,0.92) 100%);
}

.path-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: var(--parchment);
}

.path-card-content .eyebrow { color: var(--brass-bright); }
.path-card-content h3 { color: var(--parchment); margin: 6px 0 4px; }
.path-card-content p { color: rgba(247,243,234,0.75); font-size: 0.92rem; margin-bottom: 14px; }

.path-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brass-bright);
}

@media (max-width: 860px) {
  .path-grid { grid-template-columns: 1fr; }
  .path-card { aspect-ratio: 16/10; }
}

/* ---------- Quote block ---------- */

.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.42;
  color: var(--parchment);
  font-weight: 500;
}

.quote-block cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--brass-bright);
  font-size: 0.95rem;
}

/* ---------- Two column feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img { border-radius: 4px; }

.magic-circle-plain {
  margin-top: 22px;
}

.magic-circle-plain img {
  width: 84px;
  height: 84px;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

@media (max-width: 860px) {
  .split, .split-reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* ---------- Feature list ---------- */

.feature-list {
  list-style: none;
  margin-top: 28px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(27,27,24,0.1);
  color: var(--ink-text);
}

.section-dark .feature-list li { border-top-color: rgba(247,243,234,0.15); }

.feature-list .mark { color: var(--brass); font-family: var(--serif); font-size: 1.1rem; flex-shrink: 0; }

/* ---------- Review cards ---------- */

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

.review-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .review-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  background: var(--parchment);
  border: 1px solid rgba(27,27,24,0.1);
  border-radius: 4px;
  padding: 30px;
}

.review-card p { color: var(--ink-text); font-size: 0.96rem; }
.review-card cite { display: block; margin-top: 16px; font-style: normal; font-weight: 600; font-size: 0.85rem; color: var(--grey-text); }

.stars { color: var(--brass); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.9rem; }

@media (max-width: 860px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--brass);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--ink); }
.cta-band p { color: rgba(14,17,22,0.72); margin: 14px 0 30px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(247,243,234,0.6);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,243,234,0.12);
}

.footer-grid h4 {
  font-family: var(--sans);
  color: var(--parchment);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid a, .footer-grid p {
  display: block;
  color: rgba(247,243,234,0.6);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.footer-grid a:hover { color: var(--brass-bright); }

.footer-bottom {
  padding-top: 26px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact form ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink-text);
}

input, select, textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(27,27,24,0.18);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: white;
  color: var(--ink-text);
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}

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

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

/* ---------- Utility ---------- */

.center { text-align: center; margin-left: auto; margin-right: auto; }
.mt { margin-top: 60px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
