/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F5F0E8;
  --cream-dark:  #EDE7DA;
  --charcoal:    #2C2C2A;
  --charcoal-mid:#444441;
  --gray:        #888780;
  --gray-light:  #D3D1C7;
  --gold:        #B8964A;
  --gold-light:  #F5ECD8;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans:   'Montserrat', Helvetica, sans-serif;

  --max-w:       1200px;
  --max-narrow:  720px;

  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    4rem;
  --space-xl:    7rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }
em { font-style: italic; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.large-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: var(--charcoal);
  font-weight: 400;
}

/* ── LOGO ────────────────────────────────────────────────────────────────── */
.logo-sur {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  color: var(--charcoal);
}
.logo-elia {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--charcoal);
  margin-left: -2px;
  position: relative;
  top: 2px;
}

/* ── LAYOUT ──────────────────────────────────────────────────────────────── */
.container        { max-width: var(--max-w);      margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--charcoal);
  padding: 1rem 2.2rem;
  border: 1px solid var(--charcoal);
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }

.btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--gray-light); }

.nav-logo { display: flex; align-items: baseline; gap: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }

.nav-links .nav-cta {
  color: var(--white);
  background: var(--charcoal);
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--charcoal);
  letter-spacing: 0.12em;
  transition: background 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,44,42,0.65) 0%, rgba(44,44,42,0.2) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 3rem;
  margin-top: 80px;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ── PHILOSOPHY ──────────────────────────────────────────────────────────── */
.philosophy {
  padding: var(--space-xl) 0;
  text-align: center;
}
.philosophy-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.8rem;
  line-height: 1.3;
}
.philosophy-body {
  font-size: 1rem;
  color: var(--charcoal-mid);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.philosophy-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.philosophy-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
}

/* ── DESTINATIONS PREVIEW ────────────────────────────────────────────────── */
.destinations-preview {
  padding: var(--space-lg) 0 var(--space-xl);
  background: var(--cream-dark);
}
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-top: 0.5rem; }

.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 560px;
}
.dest-col-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.dest-card {
  position: relative;
  overflow: hidden;
  display: block;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.04); }
.dest-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(44,44,42,0.7) 0%, transparent 100%);
}
.dest-card-content h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.dest-card-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin: 0;
}
.dest-footer { margin-top: 2rem; }

/* ── PROCESS PREVIEW ─────────────────────────────────────────────────────── */
.process-preview {
  padding: var(--space-xl) 0;
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.process-text h2 { margin-bottom: 1.2rem; }
.process-text p { color: var(--charcoal-mid); margin-bottom: 2rem; }
.process-steps { display: flex; flex-direction: column; gap: 2rem; }
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.process-step h4 { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 500; }
.process-step p { font-size: 0.88rem; color: var(--charcoal-mid); margin: 0; }

/* ── WHY SURELIA ─────────────────────────────────────────────────────────── */
.why {
  padding: var(--space-xl) 0;
  background: var(--charcoal);
}
.why .section-label { color: var(--gold); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.why-item {}
.why-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.why-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-serif);
  font-weight: 500;
}
.why-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ── CTA SECTION ─────────────────────────────────────────────────────────── */
.cta-section {
  padding: var(--space-xl) 0;
  background: var(--gold-light);
  text-align: center;
}
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { color: var(--charcoal-mid); margin-bottom: 2rem; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  padding: 3rem 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo .logo-sur,
.footer-logo .logo-elia { color: var(--white); }
.footer-logo p {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0.3rem 0 0;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  margin: 0;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--gray-light);
}
.page-hero h1 { margin-top: 0.5rem; }
.page-hero-sub {
  font-size: 1rem;
  color: var(--charcoal-mid);
  max-width: 500px;
  margin-top: 1.2rem;
  margin-bottom: 0;
}

/* ── HOW WE WORK ─────────────────────────────────────────────────────────── */
.hww-intro { padding: var(--space-lg) 0; }

.hww-steps { padding: 0 0 var(--space-xl); }
.hww-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: var(--space-lg) 0;
}
.hww-step-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  padding-top: 0.3rem;
}
.hww-step-content h2 { margin-bottom: 0.4rem; }
.hww-step-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}
.hww-step-content p { color: var(--charcoal-mid); }

.hww-list {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hww-list li {
  font-size: 0.88rem;
  color: var(--charcoal-mid);
  padding-left: 1.2rem;
  position: relative;
}
.hww-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.hww-divider {
  height: 1px;
  background: var(--gray-light);
}

.not-section {
  padding: var(--space-xl) 0;
  background: var(--cream-dark);
}
.not-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.not-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--gray-light);
}
.not-x {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.not-item p {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  margin: 0;
}
.not-cta-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  margin-top: 1.5rem;
}

/* ── DESTINATIONS FULL ───────────────────────────────────────────────────── */
.dest-intro { padding: var(--space-lg) 0; }

.dest-full { padding: 0 0 var(--space-xl); }
.dest-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--gray-light);
  min-height: 480px;
}
.dest-article--reverse { direction: rtl; }
.dest-article--reverse > * { direction: ltr; }

.dest-article-img { overflow: hidden; }
.dest-article-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.6s; }
.dest-article:hover .dest-article-img img { transform: scale(1.03); }

.dest-article-text {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.dest-region {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.dest-article-text h2 { margin-bottom: 1.2rem; }
.dest-article-text p { color: var(--charcoal-mid); font-size: 0.9rem; }
.dest-article-text .btn-ghost { margin-top: 1.5rem; align-self: flex-start; }

.scope-note {
  padding: var(--space-lg) 0;
  background: var(--cream-dark);
  border-top: 1px solid var(--gray-light);
}
.scope-note p { color: var(--charcoal-mid); margin-top: 0.8rem; margin-bottom: 0; }

/* ── ABOUT ───────────────────────────────────────────────────────────────── */
.about-content { padding: var(--space-lg) 0 var(--space-xl); }
.about-image {
  height: 400px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--charcoal-mid); }
.about-divider {
  height: 1px;
  background: var(--gray-light);
  margin: 3rem 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.value-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.88rem; color: var(--charcoal-mid); margin: 0; }

.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  margin-top: 1rem;
}
.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.about-quote cite {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── INQUIRY ─────────────────────────────────────────────────────────────── */
.inquiry-hero { padding: 10rem 0 4rem; border-bottom: 1px solid var(--gray-light); }
.inquiry-section { padding: var(--space-lg) 0; }

.inquiry-note {
  background: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.88rem;
  color: var(--charcoal-mid);
}
.inquiry-note strong { color: var(--charcoal); font-weight: 500; }

.inquiry-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888780'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.btn-submit { align-self: flex-start; cursor: pointer; font-family: var(--font-sans); }

.inquiry-reassurance {
  padding: var(--space-lg) 0;
  background: var(--cream-dark);
  border-top: 1px solid var(--gray-light);
}
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.reassurance-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.reassurance-item p { font-size: 0.85rem; color: var(--charcoal-mid); margin: 0; }

/* ── THANK YOU ───────────────────────────────────────────────────────────── */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
}
.thankyou-inner {
  text-align: center;
}
.thankyou-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.thankyou-inner h1 { margin-bottom: 1.2rem; }
.thankyou-sub {
  color: var(--charcoal-mid);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}
.thankyou-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--cream); padding: 5rem 2rem 2rem; gap: 1.8rem; box-shadow: -4px 0 20px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.85rem; }
  .nav-toggle { display: flex; }

  .dest-grid { grid-template-columns: 1fr; height: auto; }
  .dest-col-right { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card { height: 240px; }
  .dest-card--large { height: 300px; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hww-step { grid-template-columns: 60px 1fr; }
  .hww-step-num { font-size: 2.5rem; }
  .dest-article { grid-template-columns: 1fr; min-height: auto; }
  .dest-article--reverse { direction: ltr; }
  .dest-article-img { height: 300px; }
  .dest-article-text { padding: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .not-grid { grid-template-columns: 1fr; }
  .reassurance-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nav { padding: 1.2rem 1.5rem; }
  .hero-content { padding: 0 1.5rem; }
  .hero-scroll { left: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .dest-col-right { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
}
