:root {
  --bg: #f6f1ea;
  --bg-soft: #fbf8f4;
  --text: #2f271f;
  --muted: #6f6254;
  --line: rgba(47, 39, 31, 0.12);
  --accent: #b49468;
  --dark: #211a15;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(30, 23, 17, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(180,148,104,0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(180,148,104,0.06), transparent 18%),
    var(--bg-soft);
  line-height: 1.65;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.05;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 244, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: inline-block;
}

.site-nav {
  display: flex;
  gap: 26px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.25s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--text); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: #120f0d;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: center center / cover no-repeat url('assets/museum.jpg');
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(18, 15, 13, 0.34) 0%,
    rgba(18, 15, 13, 0.16) 18%,
    rgba(18, 15, 13, 0.05) 42%,
    rgba(18, 15, 13, 0) 72%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-content-bottom {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 0 0 5.8rem;
}

.eyebrow,
.section-label {
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero h1 {
  margin: 0 auto 0.9rem;
  max-width: 18ch;
  font-size: clamp(2.75rem, 6vw, 4.8rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.lead {
  margin: 0;
  max-width: 70rem;
  font-size: clamp(0.95rem, 1.1vw, 1.28rem);
  line-height: 1.45;
}

.hero-intro {
  padding: 40px 0 18px;
  background: var(--bg-soft);
}

.hero-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero-intro-lead {
  color: var(--muted);
  text-shadow: none;
  max-width: 60rem;
}

.hero-actions,
.btn {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-actions-below {
  margin-top: 0;
  justify-content: flex-start;
}

.btn {
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.96rem;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-outline-light {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(47, 39, 31, 0.24);
  color: var(--text);
}

.btn-outline-dark:hover {
  background: rgba(47, 39, 31, 0.05);
  border-color: rgba(47, 39, 31, 0.38);
}

.section {
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}
.section-heading.centred {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 42px;
}
.section-intro {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}
h3 {
  font-size: clamp(1.4rem, 2.15vw, 2.05rem);
}

.journey-title-small {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.08;
}

.signature-copy h3 {
  max-width: 15ch;
}

.intro,
.bespoke-section { background: var(--bg-soft); }
.journeys,
.closing-banner { background: var(--bg); }
.circle-section { background: #f2ece4; }
.philosophies-section { background: linear-gradient(180deg, #fbf8f4 0%, #f8f3ec 100%); }

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card h4 {
  margin: 0;
}

.image-card img,
.image-stack img {
  border-radius: inherit;
}
.image-card img,
.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tall-card {
  min-height: auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.philosophy-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(47,39,31,0.08);
  box-shadow: 0 14px 36px rgba(36, 29, 24, 0.06);
}
.philosophy-card h3 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.philosophy-card p {
  margin: 0;
  color: var(--muted);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.signature-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  isolation: isolate;
  background-color: #1a1511;
}
.signature-card.large {
  min-height: 620px;
}

.signature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1s ease, filter 0.5s ease;
}

.signature-card:hover::before {
  transform: scale(1.07);
  filter: saturate(1.03);
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,15,11,0.80) 0%, rgba(20,15,11,0.56) 42%, rgba(20,15,11,0.16) 100%);
  z-index: 1;
}

.signature-copy {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 48px 40px;
  max-width: 78%;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.signature-copy h3 {
  font-size: clamp(2.4rem, 3.5vw, 3.9rem);
  line-height: 1.02;
  margin-bottom: 0.8rem;
}
.signature-copy p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  max-width: 34ch;
}

.light { color: rgba(255,255,255,0.75); }

.card-london::before {
  background-image: url('assets/london.jpg');
  background-position: center;
}
.card-gstaad::before {
  background-image: url('assets/gstaad.png');
  background-position: center;
}
.card-florence::before {
  background-image: url('assets/florence.png');
  background-position: center;
}
.card-paris::before {
  background-image: url('assets/paris_pink.png');
  background-position: center;
}
.card-kyoto::before {
  background-image: url('assets/kyoto.png');
  background-position: center;
}
.card-philippines::before {
  background-image: url('assets/philippines.png');
  background-position: center;
}

.paris-mark {
  position: absolute;
  right: 38px;
  bottom: 34px;
  width: 96px;
  height: 180px;
  z-index: 1;
  opacity: 0.18;
}
.paris-mark::before,
.paris-mark::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.95);
}
.paris-mark::before {
  left: 44px;
  top: 8px;
  width: 8px;
  height: 148px;
  border-radius: 6px;
}
.paris-mark::after {
  left: 22px;
  bottom: 0;
  width: 52px;
  height: 8px;
  border-radius: 6px;
}

.bespoke-list {
  padding-left: 1.1rem;
  margin: 1.2rem 0 1.8rem;
  color: var(--muted);
}
.bespoke-list li + li { margin-top: 0.35rem; }

.closing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.image-stack {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 74px 0 82px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
}
.contact-block {
  text-align: right;
}
.contact-block a {
  font-size: 1.1rem;
  font-weight: 600;
}
.footer-tagline {
  color: rgba(255,255,255,0.68);
  margin-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .split,
  .split.reverse,
  .closing-grid,
  .footer-grid,
  .philosophy-grid,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-copy {
    max-width: 90%;
  }

  .contact-block { text-align: left; }
}

@media (max-width: 760px) {
  .container {
    width: min(1160px, calc(100% - 28px));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 14px;
    top: calc(100% + 8px);
    flex-direction: column;
    background: rgba(251, 248, 244, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    min-width: 220px;
    box-shadow: 0 18px 36px rgba(30, 23, 17, 0.08);
    display: none;
  }
  .site-nav.open { display: flex; }

  .hero,
  .hero-content-bottom {
    min-height: 78svh;
  }

  .hero-content-bottom {
    padding-bottom: 5.4rem;
  }

  .hero-intro {
    padding: 32px 0 8px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .lead {
    max-width: 34rem;
    font-size: 0.98rem;
  }

  .hero-intro-lead {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-actions-below {
    justify-content: flex-start;
  }

  .hero-actions .btn {
    min-width: 210px;
  }

  .hero-content-bottom h1 {
    max-width: 12ch;
  }

  .section {
    padding: 78px 0;
  }

  .signature-card,
  .signature-card.large {
    min-height: 480px;
  }
  .signature-copy {
    padding: 34px 24px;
    max-width: 100%;
  }
  .signature-copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}


@media (max-width: 760px) {
  .brand {
    font-size: 1.15rem;
    gap: 10px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand-text {
    white-space: nowrap;
  }
}



@media (max-width: 760px) {
  .signature-card,
  .signature-card.large {
    min-height: auto;
    display: block;
    background: var(--bg-soft);
  }

  .signature-card::before,
  .signature-overlay {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: 250px;
  }

  .signature-overlay {
    background: linear-gradient(180deg, rgba(20,15,11,0.10) 0%, rgba(20,15,11,0.20) 38%, rgba(20,15,11,0.52) 100%);
  }

  .signature-card::after {
    content: attr(data-country);
    position: absolute;
    top: 50%;
	left: 20px; bottom: 100px;
	
    transform: translateY(-50%);
    z-index: 3;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: left;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
    width: auto;
    padding: 0;
    margin: 0;
    pointer-events: none;
  }

  .signature-copy {
    margin-top: 250px;
    min-height: auto;
    max-width: 100%;
    padding: 24px 22px 26px;
    color: var(--text);
    background: var(--bg-soft);
  }

  .signature-copy .section-label.light {
    display: none;
  }

  .signature-copy h3 {
    font-size: clamp(1.75rem, 7.2vw, 2.5rem);
    max-width: 100%;
    margin-bottom: 0.7rem;
  }

  .signature-copy p {
    color: var(--muted);
    max-width: 100%;
  }

  .paris-mark {
    right: 20px;
    bottom: auto;
    top: 40px;
    width: 72px;
    height: 132px;
    opacity: 0.14;
    z-index: 2;
  }

  .paris-mark::before {
    left: 32px;
    top: 6px;
    width: 7px;
    height: 108px;
  }

  .paris-mark::after {
    left: 15px;
    width: 40px;
    height: 7px;
  }
}

/* HERO TEXT WIDEN FIX */
.hero-text {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .hero-text {
        white-space: nowrap;
    }
}
