:root {
  --navy: #0d2346;
  --navy-2: #081932;
  --cream: #f7f1e4;
  --paper: #fffaf1;
  --gold: #c39a4a;
  --gold-soft: #e8d3a4;
  --ink: #10284d;
  --shadow: 0 14px 40px rgba(13, 35, 70, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 25, 50, .97);
  border-bottom: 1px solid var(--gold);
  color: white;
}
.header-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; }
.back-link { text-decoration: none; font-weight: 700; }
.back-link:hover { color: var(--gold-soft); }
.header-mark { color: var(--gold); font-size: 1.6rem; text-decoration: none; }

.hero {
  min-height: 520px;          /* was 600 */
  display: grid;
  grid-template-columns: minmax(360px, 42%) 1fr;
  background: radial-gradient(circle at 20% 20%, #17365f, var(--navy-2) 68%);
  color: white;
}
.hero-copy {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-logo {
  width: min(340px, 85%);
  margin-bottom: 18px;
}
.hero-intro {
  max-width: 470px;
  font-size: 1.15rem;
  line-height: 1.45;
  margin-top: 10px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.hero-image-wrap { min-height: 600px; overflow: hidden; }
.hero-image { width: 100%; height: 100%; object-fit: cover; }

.button { padding: 12px 18px; border-radius: 3px; text-decoration: none; font-weight: 700; border: 1px solid var(--gold); }
.button-gold { background: var(--gold); color: var(--navy-2); }
.button-outline { color: white; }
.button:hover { transform: translateY(-1px); }

.section { padding: 68px 0; }
.section:nth-of-type(even) { background: rgba(255,255,255,.35); }
.section-title {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: .03em;
}
.section-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 14px auto 0;
  background: var(--gold);
}

.intro-section .section-title {
    text-align: left;
}
.intro-section .section-title::after {
    margin: 18px 0 0;
}
.intro-section p {
    line-height: 1.7;
}
.ruled { border-top: 1px solid rgba(195,154,74,.55); }
.split { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 48px; }
.story-illustration {
    width: min(500px, 100%);
    margin-inline: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  margin-top: 42px;
  text-align: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.step-image {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  border: 2px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.step h3 {
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  font-weight: 700;
}
.step-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 132px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 38px;
    max-width: 320px;
    margin-inline: auto;
  }

 .step-image {
  height: 165px;
}

.step-image img {
  max-height: 145px;
}
	}

.price-card { max-width: 760px; margin: auto; padding: 34px; background: var(--paper); border: 1px solid var(--gold-soft); box-shadow: var(--shadow); text-align: center; }
.price-kicker { margin: 0; text-transform: uppercase; letter-spacing: .12em; }
.price { margin: 8px 0 0; color: var(--navy); font-family: Georgia, serif; font-size: 4rem; line-height: 1; }
.price-note { margin-top: 4px; }
.included-list { max-width: 580px; margin: 26px auto; text-align: left; }
.included-list li { margin-bottom: 8px; }
.small-print { font-size: .92rem; }

.pearls {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 700px; margin: 30px auto; text-align: center; }
.pearl { display: block; width: 82px; height: 82px; margin: 0 auto 12px; border-radius: 50%; box-shadow: inset -10px -10px 18px rgba(0,0,0,.15), inset 9px 9px 15px rgba(255,255,255,.8), 0 8px 14px rgba(0,0,0,.14); }
.pearl.white { background: #f7f5ef; }
.pearl.ivory { background: #faf3d7; }
.pearl.peach { background: #ffd2ad; }
.pearl.midnight { background: #1d233b; }
.pearl.lavender { background: #c7b7c6; }
.pearl.silver { background: #d8e0e3; }
.pearl.rose { background: #f0c2c0; }

.special-pearl{
    text-align:center;
}

.pearl.special{
    position:relative;
    display:block;
    width:82px;
    height:82px;
    margin:0 auto 12px;
    border-radius:50%;
    background:#d6b56f;
    box-shadow:
        inset -10px -10px 18px rgba(0,0,0,.15),
        inset 9px 9px 15px rgba(255,255,255,.8),
        0 8px 14px rgba(0,0,0,.14);
}

.question-mark{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:54px;
    font-weight:700;
    line-height:1;
    color:#081932;
    text-shadow:0 1px 3px rgba(0,0,0,.18);
    font-family:Georgia, "Times New Roman", serif;
    pointer-events:none;
}
.centred-note { text-align: center; margin-top: 26px; }

.keepsakes {
    display: grid;
    grid-template-columns: repeat(2, 320px);
    justify-content: center;
    gap: 36px;
}
.keepsake-card { background: var(--navy); color: white; box-shadow: var(--shadow); text-align: center; }
.keepsake-card img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.keepsake-card h3 { margin: 0; padding: 14px; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; }

.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.faq-visit { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
details { background: rgba(255,255,255,.45); border: 1px solid var(--gold-soft); border-bottom: 0; padding: 0 16px; }
details:last-of-type { border-bottom: 1px solid var(--gold-soft); }
summary { padding: 14px 0; cursor: pointer; font-weight: 700; }
details p { padding-bottom: 14px; }
.visit-card { text-align: left; }
.map-frame { width: 100%; aspect-ratio: 2.1; overflow: hidden; border: 1px solid var(--gold-soft); box-shadow: var(--shadow); background: var(--paper); }
.map-frame iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
.directions-button { display: inline-block; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a { padding: 10px 14px; background: var(--navy); color: white; text-decoration: none; }

.site-footer { background: var(--navy-2); color: white; border-top: 1px solid var(--gold); padding: 32px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: center; }
.footer-inner img { max-width: 260px; }
.footer-inner p:nth-child(2) { text-align: center; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.footer-inner p:last-child { text-align: right; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 420px; }
  .split, .faq-visit { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .pearls { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .hero { min-height: auto; }
  .hero-copy { padding: 46px 24px; }
  .hero-image-wrap { min-height: 300px; }
  .section { padding: 48px 0; }
  .steps, .keepsakes { grid-template-columns: 1fr; }
  .pearls { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner img { margin: auto; }
  .footer-inner p:last-child { text-align: center; }
}


/* Booking calendar */
.booking-intro { max-width: 760px; margin: -8px auto 28px; text-align: center; }
.booking-panel { max-width: 820px; margin: 0 auto; padding: clamp(20px, 4vw, 36px); background: var(--paper); border: 1px solid var(--gold-soft); box-shadow: var(--shadow); }
.booking-toolbar { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.booking-toolbar label { font-weight: 700; }
.booking-toolbar select { min-width: 220px; padding: 11px 40px 11px 12px; color: var(--navy); background: white; border: 1px solid var(--gold); border-radius: 2px; font: inherit; }
.calendar-heading { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 8px; margin-bottom: 16px; }
.calendar-heading h3 { margin: 0; color: var(--navy); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 500; text-align: center; }
.calendar-nav { width: 42px; height: 42px; border: 1px solid var(--gold-soft); background: transparent; color: var(--navy); font-size: 1.7rem; cursor: pointer; }
.calendar-nav:hover:not(:disabled) { background: var(--gold-soft); }
.calendar-nav:disabled { opacity: .25; cursor: default; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.calendar-weekdays { margin-bottom: 7px; color: var(--navy); text-align: center; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.calendar-day { min-height: 58px; display: grid; place-items: center; padding: 4px; border: 1px solid rgba(195,154,74,.24); background: rgba(255,255,255,.5); color: rgba(16,40,77,.45); text-decoration: none; font-weight: 700; }
.calendar-day.is-empty { border-color: transparent; background: transparent; }
.calendar-day.is-past { opacity: .35; }
.calendar-day.is-bookable { background: var(--navy); border-color: var(--navy); color: white; cursor: pointer; box-shadow: 0 4px 10px rgba(13,35,70,.12); }
.calendar-day.is-bookable:hover, .calendar-day.is-bookable:focus { background: var(--gold); color: var(--navy-2); outline: none; transform: translateY(-1px); }
.booking-key { margin: 20px 0 0; text-align: center; font-size: .92rem; }
.booking-key-swatch { display: inline-block; width: 13px; height: 13px; margin-right: 6px; vertical-align: -1px; background: var(--navy); }

.booking-key-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 10px;
}

.booking-key-walk-in {
  background: var(--paper);
  border: 1px solid var(--gold-soft);
}

.booking-key-closed {
  background: #dedede;
  border: 1px solid #c7c7c7;
}

.calendar-day.is-walk-in {
  background: rgba(255, 255, 255, .5);
  color: var(--navy);
  border-color: rgba(195, 154, 74, .24);
}

.calendar-day.is-closed {
  background: #dedede;
  color: #707070;
  border-color: #c7c7c7;
  opacity: 1;
  cursor: default;
}

.gift-voucher-card { max-width: 820px; margin: 28px auto 0; padding: 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--navy); color: white; border: 1px solid var(--gold); }
.gift-voucher-card h3 { margin: 2px 0 8px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.6rem; font-weight: 500; }
.gift-voucher-card p { margin-bottom: 0; }
.gift-kicker { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.gift-voucher-card .button { flex: 0 0 auto; text-align: center; }

@media (max-width: 620px) {
  .calendar-weekdays, .calendar-grid { gap: 4px; }
  .calendar-day { min-height: 44px; font-size: .9rem; }
  .gift-voucher-card { align-items: stretch; flex-direction: column; }
}

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

.experience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 28px;
  background: #fffaf0;
  border: 1px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(13, 35, 70, 0.1);
}

.experience-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.experience-card p {
  margin-bottom: 24px;
}

.experience-card .button {
  margin-top: auto;
}

.experience-section {
    padding-top: 20px;
}

.experience-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 230px;
  margin-bottom: 18px;
  text-decoration: none;
}

.experience-card-image img {
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 220px;
  object-fit: contain;
}

.experience-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
}

.experience-card p {
  margin: 0 0 24px;
}

@media (max-width: 720px) {
  .experience-options {
    grid-template-columns: 1fr;
  }

  .experience-card-image {
    height: 190px;
  }

  .experience-card-image img {
    max-height: 180px;
  }
}