/* ============================================
   Melina Foteinou Photography — Destination Wedding page
   Brand: Asty CF, warm neutral (cream / charcoal), square corners
   ============================================ */

@font-face {
  font-family: "Asty CF";
  src: url("Font/woff2/AstyCFStdThin.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asty CF";
  src: url("Font/woff2/AstyCFStdBook.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asty CF";
  src: url("Font/woff2/AstyCFStdMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asty CF";
  src: url("Font/woff2/AstyCFStdBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #eeede9;
  --cream-deep: #f4f1eb;
  --ink: #353535;
  --ink-soft: #545454;
  --charcoal: #2f2d2a;
  --charcoal-border: #3a3732;
  --hairline: rgba(53, 53, 53, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  margin: 0;
  padding: 0 clamp(12px, 2vw, 22px);
  font-family: "Asty CF", ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}

.site-header .wrap {
  max-width: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .logo img {
  height: 40px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.back-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.back-link:hover {
  color: var(--ink);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--charcoal-border);
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream-deep);
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--charcoal-border);
}

.btn-ghost:hover {
  background: rgba(47, 45, 42, 0.05);
}

.btn .arrow {
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

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

.hero {
  padding: 96px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.08;
  margin: 0 auto 28px;
  max-width: 900px;
  letter-spacing: -0.5px;
}

.hero .price-line {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 500;
  margin: 0 0 20px;
  color: var(--ink);
}

.hero .lede {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: var(--ink-soft);
}

.hero .btn {
  margin: 0 auto;
}

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

section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  margin: 0;
  line-height: 1.15;
}

/* Explanations grid (numbered cards, not a list) */

.explain {
  border-top: 1px solid var(--hairline);
}

.explain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.explain-card {
  padding: 32px 28px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.explain-card .num {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.explain-card h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.3;
}

.explain-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

/* Process timeline */

.process {
  background: var(--cream-deep);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.process-list li {
  border-top: 1px solid var(--charcoal-border);
  padding-top: 20px;
}

.process-list .step-num {
  display: block;
  font-size: 13px;
  letter-spacing: 1.4px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.process-list h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
}

.process-list p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}

/* Closing CTA */

.closing {
  text-align: center;
  border-top: 1px solid var(--hairline);
}

.closing h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  margin: 0 0 18px;
}

.closing p {
  max-width: 520px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
  font-size: 16px;
}

.closing .btn {
  margin: 0 auto 20px;
}

.closing .secondary-link {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--charcoal-border);
  padding-bottom: 2px;
}

.closing .secondary-link:hover {
  color: var(--ink);
}

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

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 48px 0;
  text-align: center;
}

.site-footer .logo img {
  height: 32px;
  margin: 0 auto 16px;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ink-soft);
}

.site-footer a {
  border-bottom: 1px solid var(--charcoal-border);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }

  .back-link {
    display: none;
  }

  .hero {
    padding: 64px 0 56px;
  }

  section {
    padding: 64px 0;
  }

  .explain-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }
}
