:root {
  --brand-teal: #8ad3c2;
  --ink: #000000;
  --ink-soft: #3c4241;
  --surface: #ffffff;
  --surface-soft: #fcfdfd;
  --border: rgba(60, 66, 65, 0.2);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
  --radius: 20px;
}

@font-face {
  font-family: "Cintarini";
  src: url("Cintarini.ttf") format("truetype");
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--ink-soft);
  background:
    linear-gradient(
      to bottom,
      var(--surface) 0%,
      var(--surface-soft) 30%,
      rgba(212, 241, 234, 0.74) 70%,
      rgba(138, 211, 194, 0.52) 100%
    );
  font-family: "Segoe UI", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.page-shell {
  width: min(980px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.8rem 0 2.5rem;
}

.hero {
  text-align: center;
  margin-bottom: 0.55rem;
}

.logo-stage {
  width: min(132px, 32vw);
  margin: 0 auto;
  padding: 0;
}

.brand-logo {
  width: 100%;
  max-width: 132px;
  border-radius: 12px;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.08));
}

.eyebrow {
  margin: 1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.title {
  margin: -13rem 0 0;
  line-height: 1;
}

.wordmark-logo {
  width: min(560px, 94vw);
  max-width: 560px;
  display: block;
  margin: 0 auto;
}

.serif-title {
  display: block;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 7.2vw, 5rem);
  letter-spacing: 0.02em;
}

.script-title {
  display: inline-block;
  margin-top: -0.5rem;

  color: var(--brand-teal);
  font-family: "Cintarini", "Brush Script MT", cursive;
  font-size: clamp(3.8rem, 9.8vw, 6.3rem);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.subtitle {
  width: min(720px, 92%);
  margin: -11rem auto 0;
  font-size: 1.02rem;
}

.teal-text {
  color: var(--brand-teal);
  font-weight: 700;
}

.booking-wrap {
  display: block;
  width: min(760px, 100%);
  margin: 0 auto 1rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.card-light {
  padding: clamp(1.4rem, 2.2vw, 2rem);
  text-align: center;
}

h2,
h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
}

.serif-lead {
  font-family: "Times New Roman", Times, serif;
  color: var(--ink);
}

.script-tail {
  font-family: "Cintarini", "Brush Script MT", cursive;
  color: var(--brand-teal);
  font-size: 1.15em;
  letter-spacing: 0.02em;
  position: relative;
  top: -0.32em;
  right: -0.15em;
}

.contact-list {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.7rem;
}

.contact-row {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.contact-pill {
  display: inline-flex;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(138, 211, 194, 0.8);
  background: linear-gradient(180deg, var(--brand-teal), var(--brand-teal-soft));
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.07);
}

.contact-pill:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.copy-btn {
  width: 1.65rem;
  height: 1.65rem;
  border: 0;
  background: transparent;
  position: absolute;
  left: calc(100% + 0.45rem);
  top: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  transform: translateY(-50%);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.copy-btn:hover,
.copy-btn:focus-visible {
  transform: translateY(calc(-50% - 1px));
  opacity: 0.82;
}

.copy-btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.copy-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.copy-feedback {
  margin: 0.55rem 0 0;
  min-height: 1.2rem;
  color: var(--brand-teal);
  font-size: 0.9rem;
  text-align: center;
}

.details {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.details article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.details p {
  margin: 0;
}

.site-footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink);
}

@media (max-width: 920px) {
  .details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .title {
    margin: -8.4rem 0 0;
  }

  .wordmark-logo {
    width: min(470px, 96vw);
  }

  .subtitle {
    margin-top: -7.3rem;
  }

  .contact-pill {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
