/* =========================================================
   LORETA WAZIRI — SITE STYLESHEET
   Editorial / luxury magazine system
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --charcoal: #171717;
  --soft-charcoal: #3D3A37;
  --ivory: #F8F5EF;
  --gold: #B89B5E;
  --champagne: #D8C7A0;
  --white: #FFFFFF;
  --border: #DED7CA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
}

img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 90%); margin: auto; }
.container.narrow { width: min(760px, 90%); }

h1, h2, h3 { font-family: "Playfair Display", serif; font-weight: 500; line-height: 1.08; }
h2 { font-size: clamp(38px, 4.6vw, 60px); margin-bottom: 22px; }
h3 { font-size: 26px; margin-bottom: 10px; }

.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
}

section { padding: 100px 0; }
.tight { padding: 60px 0; }

.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 14px 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--gold);
  transition: .3s ease;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #9F844C; }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.7); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-dark { color: var(--charcoal); border-color: var(--charcoal); background: transparent; }
.btn-dark:hover { background: var(--charcoal); color: var(--white); }

/* =========================
   HEADER / NAV
========================= */

header.site-header {
  position: relative;
  width: 100%;
  z-index: 20;
  padding: 26px 0;
  background: var(--charcoal);
  color: var(--white);
}
header.site-header.transparent {
  position: absolute;
  top: 0; left: 0;
  background: transparent;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: "Playfair Display", serif; font-size: 23px; letter-spacing: 2px; font-weight: 500; }
nav.primary-nav ul { display: flex; list-style: none; gap: 24px; flex-wrap: wrap; }
nav.primary-nav a { font-size: 11.5px; letter-spacing: 1.3px; text-transform: uppercase; transition: .3s ease; }
nav.primary-nav a:hover, nav.primary-nav a[aria-current="page"] { color: var(--champagne); }

@media (max-width: 900px) {
  nav.primary-nav ul { display: none; }
}

/* =========================
   PAGE HERO (inner pages)
========================= */

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.30)), var(--charcoal) center/cover no-repeat;
  padding-bottom: 60px;
}
.page-hero .eyebrow {
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.page-hero h1 { font-size: clamp(44px, 6vw, 78px); color: var(--white); }
.page-hero p { max-width: 560px; color: rgba(255,255,255,.85); font-size: 17px; margin-top: 16px; }
.breadcrumb { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--champagne); }

/* =========================
   HOME HERO
========================= */

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.28)), url("images/loreta-hero.jpg") center/cover no-repeat;
}
.hero-content { max-width: 700px; padding-top: 40px; }
.hero h1 { font-size: clamp(58px, 8vw, 105px); font-weight: 400; color: var(--white); margin-bottom: 22px; }
.hero p { max-width: 540px; font-size: 19px; color: rgba(255,255,255,.88); margin-bottom: 32px; }
.buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================
   INTRO / TWO-COLUMN
========================= */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split img { height: 620px; object-fit: cover; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.intro-text p, .body-copy p { color: var(--soft-charcoal); font-size: 17px; margin-bottom: 22px; max-width: 62ch; }

/* =========================
   DARK STORY BLOCK
========================= */

.story { background: var(--charcoal); color: var(--white); }
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 560px; }
.story-image img { height: 100%; min-height: 560px; object-fit: cover; }
.story-content { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.story-content h2 { color: var(--white); }
.story-content p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 26px; max-width: 50ch; }

/* =========================
   STATEMENT
========================= */

.statement { text-align: center; padding: 110px 20px; }
.statement h2 { max-width: 900px; margin: auto; }
.gold-line { width: 55px; height: 2px; background: var(--gold); margin: 24px auto; }

/* =========================
   CARDS
========================= */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--white); overflow: hidden; }
.card-image { height: 380px; object-fit: cover; }
.card-content { padding: 28px; }
.card-content p { color: var(--soft-charcoal); font-size: 15px; margin-bottom: 18px; }

/* =========================
   TIMELINE (Journey page)
========================= */

.timeline { position: relative; margin-top: 60px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  gap: 0 24px;
  padding-bottom: 64px;
  position: relative;
}
.timeline-year {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold);
  padding-top: 4px;
}
.timeline-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold);
  margin: 8px auto 0;
  position: relative;
  z-index: 2;
}
.timeline-body h3 { margin-bottom: 8px; }
.timeline-body p { color: var(--soft-charcoal); font-size: 16px; max-width: 60ch; }

@media (max-width: 700px) {
  .timeline::before { left: 5px; }
  .timeline-item { grid-template-columns: 20px 1fr; }
  .timeline-year { grid-column: 1 / -1; padding-top: 0; margin-bottom: 6px; }
  .timeline-dot { margin: 6px 0 0; }
}

/* =========================
   TRAVEL / GALLERY
========================= */

.travel-header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 45px; gap: 20px; }
.travel-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 18px; }
.travel-card { position: relative; height: 500px; overflow: hidden; }
.travel-card img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.travel-card:hover img { transform: scale(1.04); }
.travel-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: end;
  padding: 28px; color: var(--white);
  background: linear-gradient(transparent 40%, rgba(0,0,0,.72));
}
.travel-overlay h3 { font-size: 30px; color: var(--white); margin: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid img { height: 300px; object-fit: cover; }
.gallery-grid.mixed div:nth-child(3n+1) img { height: 420px; }

/* =========================
   VLOG
========================= */

.vlog { background: var(--charcoal); color: var(--white); }
.vlog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.video-frame { aspect-ratio: 16/9; background: #252525; position: relative; overflow: hidden; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder { aspect-ratio: 16/9; background: #252525; display: flex; align-items: center; justify-content: center; }
.play { width: 72px; height: 72px; border: 1px solid var(--champagne); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--champagne); font-size: 24px; }
.vlog h2 { color: var(--white); }
.vlog p { color: rgba(255,255,255,.72); margin-bottom: 24px; max-width: 46ch; }

.vlog-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vlog-card figcaption { padding: 16px 2px; }
.vlog-card figcaption .section-label { margin-bottom: 8px; }
.vlog-card h3 { font-size: 21px; }

/* =========================
   STORIES
========================= */

.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-card img { height: 290px; object-fit: cover; margin-bottom: 20px; }
.story-card h3 { font-size: 25px; line-height: 1.2; margin-bottom: 8px; }
.story-card p { color: var(--soft-charcoal); font-size: 14px; }
.story-card .section-label { margin-bottom: 10px; }

article.story-body { max-width: 720px; margin: 0 auto; }
article.story-body p { color: var(--soft-charcoal); font-size: 18px; margin-bottom: 24px; }
article.story-body h2 { font-size: 32px; margin-top: 40px; }
.story-meta { display: flex; gap: 16px; color: var(--soft-charcoal); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px; }

/* =========================
   CONTACT FORM
========================= */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 8px; color: var(--soft-charcoal); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: inherit; font-size: 15px;
  color: var(--charcoal);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.contact-info h3 { margin-bottom: 6px; }
.contact-info p { color: var(--soft-charcoal); margin-bottom: 28px; }
.social-row { display: flex; gap: 16px; margin-top: 10px; }
.social-row a { border: 1px solid var(--border); padding: 10px 18px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

/* =========================
   FOOTER
========================= */

footer.site-footer { background: #111111; color: var(--white); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
footer h3 { font-size: 28px; margin-bottom: 14px; color: var(--white); }
footer p { color: rgba(255,255,255,.6); max-width: 320px; }
footer ul { list-style: none; }
footer li { margin-bottom: 9px; color: rgba(255,255,255,.65); }
footer a:hover { color: var(--champagne); }
.copyright { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; color: rgba(255,255,255,.45); font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* =========================
   VISUALLY HIDDEN (a11y helper)
========================= */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .split, .story-grid, .contact-grid, .vlog-grid { grid-template-columns: 1fr; gap: 40px; }
  .split img { height: 420px; }
  .story-content { padding: 55px 25px; }
  .story-image img { min-height: 400px; }
  .cards, .cards.two, .stories-grid, .gallery-grid, .vlog-index { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: 1fr; }
  .travel-card { height: 420px; }
  .travel-header { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 70px 0; }
  .page-hero { min-height: 40vh; }
}
