:root {
  color-scheme: light;
  font-family: "Times New Roman", Times, serif;
  background: #f8f3ed;
  color: #2b2a28;
}

h1, h2, h3 {
  color: #1a2e4a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page {
  margin: 0;
  padding: 0;
  position: relative;
}

.lang-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.lang-switch a img {
  display: block;
  border-radius: 2px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  color: #6b5540;
  background: rgba(255, 248, 240, 0.88);
  border: 1px solid rgba(196, 149, 106, 0.4);
  border-radius: 20px;
  padding: 5px 12px;
  backdrop-filter: blur(4px);
  transition: background 0.18s, box-shadow 0.18s;
}

.lang-switch a:hover {
  background: rgba(255, 244, 230, 1);
  box-shadow: 0 4px 12px rgba(176, 124, 82, 0.15);
}

/* ── Hero ─────────────────────────────────────────────── */

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 20px 40px;
  border: 1px solid rgba(176, 124, 82, 0.22);
  border-radius: 14px;
  pointer-events: none;
  z-index: 1;
}

.hero-botanical {
  position: absolute;
  width: 210px;
  height: 242px;
  pointer-events: none;
  opacity: 0.58;
}

.hero-botanical--left  { top: 0; left: 0; }
.hero-botanical--right { top: 0; right: 0; transform: scaleX(-1); }
.hero-botanical--bl    { bottom: 0; left: 0; transform: scaleY(-1); }
.hero-botanical--br    { bottom: 0; right: 0; transform: scale(-1,-1); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 40px;
}

@media (max-width: 720px) {
  .hero-botanical { width: 130px; height: 150px; opacity: 0.45; }
}

.hero-logo {
  display: block;
  margin: 0 auto 2px;
  max-height: 100px;
  width: auto;
}

.hero-divider {
  display: block;
  width: 220px;
  margin: 20px auto 0;
  opacity: 0.9;
}

.eyebrow {
  font-family: "Playfair Display", Georgia, serif;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #8f6a4b;
  margin: 0 0 12px;
  font-size: 1.25rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a2e4a;
  font-family: "Playfair Display", Georgia, serif;
}

.hero-text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  margin: 6px auto 0;
  font-size: 1.4rem;
  line-height: 1.5;
  max-width: 700px;
  letter-spacing: 0.06em;
  color: #4d443d;
}

.hero-text:first-of-type {
  margin-top: 24px;
}

/* ── Section stripes ──────────────────────────────────── */

.section {
  padding: 64px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-botanical {
  position: absolute;
  width: 160px;
  height: 184px;
  pointer-events: none;
  opacity: 0.38;
}

.section-botanical--tl { top: 0; left: 0; }
.section-botanical--tr { top: 0; right: 0; transform: scaleX(-1); }
.section-botanical--bl { bottom: 0; left: 0; transform: scaleY(-1); }
.section-botanical--br { bottom: 0; right: 0; transform: scale(-1,-1); }

.section--navy .section-botanical {
  opacity: 0.18;
  filter: brightness(0) invert(1);
}

.section--white {
  background: #ffffff;
}

.section--navy {
  background: #162640;
}

.section--navy h2,
.section--navy h3 {
  color: white;
}

.section--navy h2::after {
  background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0.2), transparent);
}

.section.section--navy p,
.section.section--navy .map-credit {
  color: #ffffff;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section headings ─────────────────────────────────── */

.section h2 {
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #c4956a, #e8c8a8, transparent);
  border-radius: 2px;
}

.section p {
  margin: 1.35em 0 0;
  line-height: 1.75;
  color: #4d443d;
}

/* ── Centered sections ────────────────────────────────── */

.section--centered .section-inner {
  text-align: center;
}

.section--centered .timeline {
  display: table;
  margin: 0 auto;
  text-align: left;
}

.section--centered .contact-form {
  text-align: left;
}

/* ── Info cards ───────────────────────────────────────── */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.info-card {
  background: #fbf6ef;
  border: 1px solid rgba(220, 194, 175, 0.55);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card p,
.info-card ul {
  text-align: left;
  align-self: stretch;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.info-icon {
  margin-bottom: 16px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2f8, #dce6f4);
  border: 1px solid rgba(42, 90, 150, 0.2);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(26, 46, 74, 0.1);
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: #1a2e4a;
}

.info-card p {
  margin: 0;
  color: #5d5045;
}

.info-card ul {
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  color: #5d5045;
}

.info-card ul li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 6px;
  line-height: 1.6;
}

.info-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a2e4a;
  opacity: 0.7;
}

.info-card ul li:last-child {
  margin-bottom: 0;
}

/* ── Timeline ─────────────────────────────────────────── */

.timeline {
  margin-top: 28px;
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1a2e4a, rgba(26, 46, 74, 0.15));
  border-radius: 2px;
}

.timeline-day {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  background: #1a2e4a;
  border-radius: 20px;
  padding: 4px 14px;
  display: inline-block;
  margin: 18px 0 10px;
  letter-spacing: 0.04em;
}

.timeline-day:first-child {
  margin-top: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 20px 1fr;
  align-items: center;
  gap: 0 16px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-time {
  text-align: right;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e4a;
  padding-right: 4px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1a2e4a;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #1a2e4a;
  justify-self: center;
  z-index: 1;
}

.timeline-dot--icon {
  width: 28px;
  height: 28px;
  background: #1a2e4a;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  line-height: 1;
}

.timeline-content {
  font-size: 1rem;
  color: #2b2a28;
  line-height: 1.5;
}

.timeline-desc {
  display: block;
  font-size: 0.88rem;
  color: #7c6b58;
  margin-top: 3px;
}

.timeline-content strong {
  color: #1a2e4a;
  font-size: 1.05rem;
}

/* ── Color palette ────────────────────────────────────── */

.color-palette {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.color-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

/* ── Map ──────────────────────────────────────────────── */

.map-wrapper {
  margin-top: 26px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(32, 31, 30, 0.12);
}

.map-wrapper iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
}

/* ── Contact form ─────────────────────────────────────── */

.contact-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 400;
  color: #2b2a28;
  cursor: pointer;
}

.section--navy .form-radio {
  color: rgba(255, 255, 255, 0.88);
}

.form-radio input[type="radio"] {
  accent-color: #1a2e4a;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.section--navy .form-radio input[type="radio"] {
  accent-color: white;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2e4a;
  letter-spacing: 0.03em;
}

.section--navy .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  color: #2b2a28;
  background: #fdf9f4;
  border: 1px solid rgba(176, 124, 82, 0.35);
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: vertical;
}

.section--navy .form-group input,
.section--navy .form-group textarea {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1a2e4a;
  box-shadow: 0 0 0 3px rgba(26, 46, 74, 0.08);
}

.section--navy .form-group input:focus,
.section--navy .form-group textarea:focus {
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-submit {
  align-self: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: white;
  background: #1a2e4a;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
}

.form-submit:hover {
  background: #243f66;
  transform: translateY(-2px);
}

.section--navy .form-submit {
  color: #1a2e4a;
  background: white;
}

.section--navy .form-submit:hover {
  background: #eef2f8;
}

/* ── Footer ───────────────────────────────────────────── */

.footer {
  text-align: center;
  padding: 32px 20px;
  font-size: 0.98rem;
  color: #796755;
  background: #f8f3ed;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 720px) {
  .hero {
    padding: 60px 16px;
  }

  .hero::before {
    inset: 14px 16px;
  }

  .section-inner {
    padding: 0 20px;
  }

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