:root {
  --cream: #f8f5ef;
  --cream-dark: #eee9df;
  --charcoal: #292725;
  --muted: #706b65;
  --sage: #788574;
  --sage-dark: #5f6b5c;
  --gold: #b49a68;
  --white: #ffffff;
  --border: #ded8cd;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

button {
  font-family: var(--font-body);
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.content-narrow {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section {
  padding: 60px 20px;
}

@media (min-width: 1024px) {
  .section {
    padding: 100px 40px;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

@media (min-width: 768px) {
  .hero {
    min-height: 70vh;
  }
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 39, 37, 0.45);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 20px;
  max-width: 700px;
}

.hero__names {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  color: var(--gold);
}

.hero__title {
  font-size: 2.6rem;
  margin-bottom: 0.3em;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}

.hero__subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.5em;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-text {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--cream-dark);
}

/* ---------- Intro ---------- */

.intro {
  background: var(--white);
}

.intro h2 {
  font-size: 1.9rem;
}

.intro p {
  color: var(--muted);
}

/* ---------- Destination ---------- */

.destination {
  background: var(--cream);
}

.destination__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .destination__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }
}

.destination__image-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.destination__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.destination__text {
  text-align: center;
}

@media (min-width: 768px) {
  .destination__text {
    text-align: left;
  }
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8em;
  position: relative;
  padding-bottom: 8px;
}

.label::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

@media (min-width: 768px) {
  .label::after {
    left: 0;
    transform: none;
  }
}

.destination__text h2 {
  font-size: 1.9rem;
}

.destination__text p {
  color: var(--muted);
}

/* ---------- Bank section ---------- */

.bank-section {
  background: var(--sage);
  color: var(--white);
}

.bank-section__intro {
  margin-bottom: 40px;
}

.bank-section__intro h2 {
  font-size: 1.9rem;
  color: var(--white);
}

.bank-section__intro p {
  color: var(--cream-dark);
}

.bank-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  color: var(--charcoal);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(41, 39, 37, 0.15);
}

@media (min-width: 768px) {
  .bank-card {
    padding: 40px;
  }
}

.bank-card__label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.bank-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.bank-field:first-of-type {
  padding-top: 0;
}

.bank-field__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bank-field__label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.bank-field__value {
  font-size: 1.05rem;
  font-weight: 600;
  word-break: break-word;
}

.copy-btn {
  flex-shrink: 0;
  min-width: 76px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--sage);
  background: var(--white);
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.copy-btn:hover {
  background: var(--sage);
  color: var(--white);
}

.copy-btn:active {
  transform: scale(0.97);
}

.copy-btn.is-copied {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}

.bank-card__divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.copy-all-btn {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.copy-all-btn:hover {
  background: #9c8457;
}

.copy-all-btn:active {
  transform: scale(0.98);
}

.copy-all-btn.is-copied {
  background: var(--sage-dark);
}

.bank-disclaimer {
  margin: 20px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ---------- Thank you ---------- */

.thank-you {
  background: var(--charcoal);
  color: var(--cream);
}

.thank-you h2 {
  font-size: 2rem;
  color: var(--white);
}

.thank-you p {
  color: var(--cream-dark);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--charcoal);
  color: var(--cream-dark);
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__love {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  max-width: calc(100% - 40px);
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Fade-in animation ---------- */

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}
