/* Base — antique gold σε όλο το κείμενο (#997D45 όπως το reference) */
:root{
  --bg: #fbf5ee;
  --paper: #fffdf9;
  --text: #997d45;
  --muted: #997d45;
  --ink: rgba(138, 115, 68, 0.95);
  --accent: #997d45;
  --accent-soft: rgba(153, 125, 69, 0.12);
  --gold: #997d45;
  --gold-light: #c9b896;
  --gold-deep: #997d45;
  --gold-foil: #997d45;
  /* Κείμενο «δευτερεύον» (ετικέτες, μενού): πιο σκούρο από το χρυσό wash για ανάγνωση */
  --label-ink: rgba(78, 58, 28, 0.94);
  --soft-ink: rgba(92, 72, 38, 0.88);
  --border: rgba(153, 125, 69, 0.22);
  --shadow: 0 20px 50px rgba(120, 95, 50, 0.07);
  --radius: 4px;
  --serif: "Playfair Display", Georgia, "Times New Roman", ui-serif, serif;
  --sans: "Playfair Display", Georgia, ui-serif, serif;
  --display: "Playfair Display", Georgia, ui-serif, serif;
  --script: "Playfair Display", Georgia, serif;
  /* Πλαϊνά λουλούδια (πλήρες ύψος) + γωνίες watercolor */
  --floral-border: url("assets/floral-border-left-Dkgz06KD.png");
  --floral-edge-w: min(200px, 26vw);
  --floral-corner-img: url("assets/floral.png");
  --floral-corner-size: min(360px, 52vw);
  --floral-small: url("assets/floral-small.png");
  --floral-corner-piece: url("assets/floral-corner.png");
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
html{
  scroll-behavior: smooth;
}
body{
  margin:0;
  position: relative;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background-color: var(--bg);
  background-image: linear-gradient(180deg, #fdf9f4 0%, #fbf5ee 40%, #f7f0e8 100%);
  background-attachment: fixed;
}

/* Πλαϊνό λουλούδι μόνο αριστερά */
body::before{
  content: "";
  position: fixed;
  top: 0;
  height: 100vh;
  width: var(--floral-edge-w);
  z-index: 1;
  pointer-events: none;
  background-image: var(--floral-border);
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: 0.72;
  left: 0;
  background-position: left center;
}
body::after{
  display: none;
}

.floral-corners{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Πάνω αριστερή γωνία — floral.png */
.floral-corners::before{
  content: "";
  position: absolute;
  top: 0;
  width: var(--floral-corner-size);
  height: var(--floral-corner-size);
  background-image: var(--floral-corner-img);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  opacity: 0.44;
  mix-blend-mode: screen;
  left: 0;
}
.floral-corners::after{
  display: none;
}

/* Επιπλέον ρομαντικά λουλούδια (μόνο γωνίες / πλευρές — χαμηλή ένταση) */
.floral-extra{
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
  opacity: 0.36;
  filter: saturate(0.92) sepia(0.06);
}
.floral-extra--bottom-left{
  left: max(0px, env(safe-area-inset-left, 0px));
  bottom: 0;
  width: min(220px, 34vw);
  height: min(200px, 30vw);
  background-image: var(--floral-corner-piece);
  background-position: left bottom;
  transform: rotate(-6deg);
  transform-origin: left bottom;
}
.floral-extra--bottom-right,
.floral-extra--mid-right{
  display: none;
}
.floral-extra--mid-left{
  left: 0;
  top: 38%;
  width: min(140px, 22vw);
  height: min(140px, 22vw);
  background-image: var(--floral-small);
  background-position: left center;
  transform: translateY(-50%) rotate(-4deg);
  opacity: 0.28;
}

@media (max-width: 520px){
  :root{
    --floral-edge-w: min(100px, 22vw);
    --floral-corner-size: min(220px, 58vw);
  }
  body::before{
    opacity: 0.5;
  }
  .floral-corners::before{
    opacity: 0.36;
  }
  .floral-extra--mid-left{
    display: none;
  }
  .floral-extra--bottom-left{
    width: min(160px, 40vw);
    height: min(150px, 36vw);
    opacity: 0.32;
  }
}

a{ color:inherit; }
.muted{ color: var(--muted); }
.tiny{ font-size:12px; }
.center{ text-align:center; }

/* Κουμπί «πάνω» (εμφανίζεται μετά το scroll) — κάτω αριστερά */
.scroll-top-btn{
  position: fixed;
  z-index: 2200;
  left: max(14px, env(safe-area-inset-left, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(153, 125, 69, 0.45);
  background: rgba(255, 253, 248, 0.96);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(100, 75, 35, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease,
    background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.scroll-top-btn.is-visible{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover{
  background: rgba(153, 125, 69, 0.12);
}
.scroll-top-btn.is-visible:active{
  transform: translateY(2px) scale(0.96);
}
.scroll-top-btn:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.scroll-top-btn__icon{
  display: block;
  margin-top: 2px;
}

/* Πάνω δεξιά: επιλογή γλώσσας — fixed */
.lang-dropdown-wrap{
  position: fixed;
  top: max(14px, env(safe-area-inset-top, 0px));
  right: max(14px, env(safe-area-inset-right, 0px));
  z-index: 2000;
  pointer-events: none;
}
.lang-dropdown-wrap:not([hidden]){
  pointer-events: auto;
}

.lang-dropdown{
  position: relative;
  font-family: var(--sans);
}
.lang-dropdown__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 148px;
  padding: 10px 12px 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(153, 125, 69, 0.45);
  background: rgba(255, 253, 248, 0.98);
  color: var(--label-ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(100, 75, 35, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.lang-dropdown__btn:hover{
  background: rgba(255, 255, 255, 1);
  border-color: rgba(153, 125, 69, 0.55);
}
.lang-dropdown__flag{
  font-size: 18px;
  line-height: 1;
}
.lang-dropdown__label{
  flex: 1;
  text-align: left;
}
.lang-dropdown__chev{
  display: inline-block;
  font-size: 10px;
  opacity: 0.65;
  line-height: 1;
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.lang-dropdown.is-open .lang-dropdown__chev{
  transform: rotate(180deg);
}
.lang-dropdown__panel{
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  bottom: auto;
  min-width: 100%;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 12px;
  border: 1px solid rgba(153, 125, 69, 0.2);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 10px 36px rgba(90, 72, 40, 0.14);
}
.lang-dropdown__item{
  margin: 0;
  padding: 0;
}
.lang-dropdown__option{
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--label-ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lang-dropdown__option:hover{
  background: rgba(153, 125, 69, 0.08);
}
.lang-dropdown__check{
  width: 1.1em;
  flex-shrink: 0;
  text-align: center;
  font-weight: 700;
  opacity: 0;
}
.lang-dropdown__option[aria-selected="true"] .lang-dropdown__check{
  opacity: 1;
}
.lang-dropdown__fi{
  font-size: 18px;
  line-height: 1;
}

/* Menu (keep but very subtle) */
#menu{
  position: fixed;
  top: 58px;
  left: 0; right: 0;
  z-index: 1500;
  display:flex;
  justify-content:center;
  gap: 6px;
  padding: 8px 12px;
  overflow:auto;
}
#menu a{
  text-decoration:none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--soft-ink);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 185, 120, 0.35);
  background: rgba(255, 252, 251, 0.55);
  white-space: nowrap;
}
#menu a:hover{
  border-color: rgba(153, 125, 69,.22);
  color: var(--label-ink);
}
#menu a.is-active{
  color: var(--label-ink);
  border-color: rgba(153, 125, 69, 0.48);
  background: rgba(184, 148, 47, 0.2);
  box-shadow: 0 0 0 1px rgba(153, 125, 69, 0.14);
}
#menu a.is-active:hover{
  color: var(--label-ink);
  border-color: rgba(153, 125, 69, 0.52);
  background: rgba(184, 148, 47, 0.26);
}

/* Cover: στατική εικόνα + κερί → fade-out και site */
#cover{
  position: fixed;
  inset: 0;
  z-index: 2500;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #f2eee7;
}
.envelope-stage{
  position: absolute;
  inset: 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 18px;
  padding: 0;
  justify-content:center;
  pointer-events: none;
}
.cover-hint{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  padding: 0 16px;
  text-align: center;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cover-date{
  font-family: "Great Vibes", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(34px, 9.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.06em;
  /* ίδιο σκούρο καφέ με το κύριο κείμενο (.details-invite, .location-travel) */
  color: var(--label-ink);
  text-shadow: 0 1px 2px rgba(255, 252, 245, 0.75);
}
.cover-hint-rotator{
  position: relative;
  width: 100%;
  max-width: min(92vw, 30em);
  margin: 0 auto;
  min-height: 2.6em;
}
.cover-hint-line{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  font-family: var(--sans);
  font-size: clamp(12px, 3.2vw, 15px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--label-ink);
  text-shadow: 0 1px 2px rgba(255, 252, 245, 0.75);
}
@keyframes coverHintShowEl{
  0%, 44%{ opacity: 1; }
  48%, 94%{ opacity: 0; }
  98%, 100%{ opacity: 1; }
}
@keyframes coverHintShowEn{
  0%, 44%{ opacity: 0; }
  48%, 94%{ opacity: 1; }
  98%, 100%{ opacity: 0; }
}
.cover-hint-line--el{
  animation: coverHintShowEl 4.5s ease-in-out infinite;
}
.cover-hint-line--en{
  animation: coverHintShowEn 4.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce){
  .cover-hint-line{
    animation: none !important;
    position: relative;
    opacity: 1 !important;
  }
  .cover-hint-line--en{
    margin-top: 8px;
  }
  .cover-hint-rotator{
    min-height: 0;
  }
}

.cover-poster{
  position: absolute;
  inset: 0;
  background: url("assets/white.png") center/cover no-repeat;
  z-index: 1;
  pointer-events: none;
}

.candle-hit{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(300px, 72vmin);
  height: min(300px, 72vmin);
  min-width: 120px;
  min-height: 120px;
  max-width: 92vw;
  max-height: 92vw;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 100;
  pointer-events: auto;
  border-radius: 50%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.candle-hit:focus-visible{
  outline: 2px solid rgba(153, 125, 69,.35);
  outline-offset: 4px;
}
.candle-hit:hover{ box-shadow: none; }
.candle-hit:active{
  transform: translate(-50%, -50%) scale(.99);
}

.cover-leaving{
  animation: coverFade 780ms ease forwards;
  pointer-events: none;
}
@keyframes coverFade{
  to{ opacity:0; transform: scale(1.01); filter: blur(6px); }
}

/* Page — πάνω από body decorations, κάτω από cover */
#onepage{
  display:none;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 118px 18px 0;
}
.section{
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 0 18px;
}
.section-title{
  font-family: var(--display);
  font-weight: 600;
  font-size: 42px;
  font-style: normal;
  letter-spacing: .02em;
  margin: 0;
  text-align:center;
  color: var(--text);
}
.section-subtitle{
  margin-top: 8px;
  text-align:center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft-ink);
}
/* RSVP: πλήρης πρόταση, όχι all-caps */
#rsvp .section-subtitle{
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
.location-travel{
  margin: 22px auto 8px;
  max-width: 40em;
  padding: 0 6px;
  text-align: left;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--label-ink);
  white-space: pre-line;
}
.section-lead{
  margin: 10px auto 0;
  max-width: 36em;
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  font-style: italic;
  color: var(--soft-ink);
}

.details-invite{
  margin: 8px auto 0;
  max-width: 36em;
  min-height: 20em;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(20px, 4vw, 24px);
  line-height: 1.78;
  font-weight: 500;
  font-style: italic;
  font-synthesis: style;
  letter-spacing: 0.02em;
  color: rgba(58, 42, 18, 0.96);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  white-space: pre-line;
}
@media (max-width: 600px){
  .details-invite{
    font-size: clamp(22px, 5.5vw, 26px);
    line-height: 1.72;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
.details-cards{
  margin-top: 28px;
}

/* Extra days in Greece — PDF guide */
.travel-guide{
  text-align: center;
  padding-top: 48px;
  padding-bottom: 56px;
}
.travel-guide .section-title{
  margin-bottom: 18px;
}
.travel-guide__intro{
  margin: 0 auto 28px;
  max-width: 34em;
  padding: 0 18px;
  font-family: var(--serif);
  font-size: clamp(17px, 3.6vw, 21px);
  line-height: 1.75;
  font-style: italic;
  font-weight: 500;
  color: var(--label-ink);
  white-space: pre-line;
}
.travel-guide__action{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.travel-guide__btn{
  min-width: min(100%, 280px);
  padding: 14px 22px;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.travel-guide__hint{
  margin: 0;
  max-width: 28em;
  padding: 0 16px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-ink);
  line-height: 1.5;
}

.section-eyebrow{
  text-align:center;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--soft-ink);
  margin-bottom: 8px;
}

/* Hero */
.hero{
  margin-top: 26px;
  text-align:center;
  padding: 0 18px;
  margin-bottom: 64px;
}
.hero-topline{
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft-ink);
  margin-bottom: 18px;
}
/* Serif με πλήρη ελληνικά/τόνους — το Great Vibes δεν έχει σωστά glyphs για ώ/ύ σε κινητά */
.hero-names{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 6.2vw, 60px);
  line-height: 1.12;
  margin: 0;
  color: var(--text);
  letter-spacing: 0.02em;
}
.hero-date{
  margin-top: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--soft-ink);
}

/* Buttons — ίδιο χρώμα κειμένου με το υπόλοιπο site */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(153, 125, 69, 0.35);
  background: rgba(255, 253, 248, 0.85);
  color: var(--text);
  font-weight: 700;
  text-decoration:none;
  cursor:pointer;
}
.btn:hover{ background: rgba(153, 125, 69, 0.08); }
.btn.primary{
  background: rgba(153, 125, 69, 0.1);
  border-color: rgba(153, 125, 69, 0.42);
  color: var(--text);
}
.btn.primary:hover{
  background: rgba(153, 125, 69, 0.16);
  filter: none;
}
.btn.small{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 18px;
  border: 1px solid rgba(153, 125, 69, 0.42);
  background: rgba(255, 253, 248, 0.95);
  color: var(--label-ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn.small:hover{
  background: rgba(153, 125, 69, 0.08);
  filter: none;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 86px;
}
.card{
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid rgba(160, 130, 70, 0.2);
  padding: 26px 22px;
  text-align:center;
  box-shadow: 0 8px 32px rgba(120, 90, 45, 0.06);
}
.card-title{
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--text);
}
.card-title a.hotel-title-link{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .15s ease, transform .12s ease;
}
.card-title a.hotel-title-link:hover{
  opacity: 0.92;
}
.card-title a.hotel-title-link:active{
  transform: scale(0.99);
}
.hotel-title-link__text{
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.hotel-title-link__hint{
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--label-ink);
  opacity: 1;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(160, 125, 55, 0.45);
  background: rgba(184, 148, 47, 0.1);
}

.hotel-phones{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(153, 125, 69,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hotel-phones__label{
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft-ink);
}
.hotel-phones__num{
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.hotel-phones__num:hover{
  text-decoration: underline;
}

/* Google Maps — μαλακές γωνίες, «κορνίζα» προσκλητηρίου */
.map-frame{
  position: relative;
  margin: 0;
  padding: 6px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 246, 232, 0.92) 100%);
  border: 1px solid rgba(180, 150, 80, 0.22);
  box-shadow:
    0 14px 40px rgba(110, 85, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  line-height: 0;
}
.map-frame--in-card{
  margin-top: 16px;
}
.map-frame--hotel{
  margin-top: 16px;
}
.map-frame__iframe{
  display: block;
  width: 100%;
  height: clamp(210px, 42vw, 300px);
  min-height: 210px;
  border: 0;
  border-radius: 16px;
  vertical-align: middle;
}
.card-meta{
  margin-top: 6px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft-ink);
}
.card-body{
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
  font-weight: 400;
  color: var(--label-ink);
}
.card-actions{ margin-top: 12px; }
.note{
  display:none;
}

/* Countdown */
.countdown{
  display:flex;
  justify-content:center;
  gap: min(54px, 6vw);
  margin-top: 34px;
  margin-bottom: 92px;
}
.timebox{
  background: transparent;
  border: 0;
  padding: 0;
  text-align:center;
  min-width: 72px;
}
.timebox .num{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 5.8vw, 62px);
  color: var(--text);
  line-height: 1;
}
.timebox .label{
  margin-top: 10px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--label-ink);
}
.countdown-sub{ display:none; }

/* Maps */
.maps-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
  margin-bottom: 92px;
}
.map-card{
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid rgba(160, 130, 70, 0.18);
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(100, 78, 38, 0.07);
}
.map-title{
  padding: 22px 18px 8px;
  text-align:center;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text);
}
.map-card .map-frame{
  margin: 6px 12px 16px;
}

/* RSVP (demo-like centered card) */
form{
  width: min(520px, 100%);
  margin: 34px auto 92px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(153, 125, 69,.10);
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(100, 75, 35, 0.08);
  padding: 22px 22px 18px;
}
.form-stack{ display:flex; flex-direction:column; gap: 12px; }
.f span, .f legend{
  display:block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: none;
  color: var(--label-ink);
  margin-bottom: 6px;
}
.f legend{ margin-bottom: 10px; }
fieldset.f{ border: 0; padding: 0; margin: 0; }
.radio-row{ display:flex; gap: 16px; align-items:center; }
.radio{ display:flex; gap: 8px; align-items:center; font-size: 14px; font-weight: 500; color: var(--soft-ink); }
.radio input{ accent-color: var(--accent); }

/* RSVP: δύο μεγάλες επιλογές ναι/όχι (κινητά) */
.attend-fieldset .attend-options{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.attend-option{
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.attend-option input{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.attend-option__box{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 16px 18px;
  border: 1px solid rgba(153, 125, 69,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--soft-ink);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .12s ease;
}
.attend-option__text{
  display: block;
  max-width: 100%;
}
.attend-option input:focus-visible + .attend-option__box{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.attend-option input:checked + .attend-option__box{
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  background: rgba(184, 148, 47, 0.12);
  color: var(--label-ink);
}
.attend-option:active .attend-option__box{
  transform: scale(0.99);
}

input, textarea{
  width: 100%;
  padding: 11px 12px;
  border-radius: 2px;
  border: 1px solid rgba(153, 125, 69,.14);
  background: rgba(255,255,255,.70);
  font: 500 15px/1.45 var(--sans);
  color: var(--label-ink);
}
textarea{ resize: vertical; min-height: 96px; }

.stepper-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
}
.stepper-label{
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--label-ink);
}
.stepper{
  display:flex;
  align-items:center;
  gap: 8px;
}
.stepper input{
  width: 56px;
  text-align:center;
  padding: 8px 6px;
}
.step{
  width: 32px;
  height: 32px;
  border-radius: 2px;
  border: 1px solid rgba(153, 125, 69,.14);
  background: rgba(255,255,255,.70);
  color: var(--soft-ink);
  cursor:pointer;
  font-size: 18px;
  line-height: 0;
}
.step:active{ transform: translateY(1px); }

.submit{
  margin-top: 6px;
  width: 100%;
  border: 1px solid rgba(153, 125, 69, 0.42);
  background: rgba(255, 253, 248, 0.96);
  color: var(--label-ink);
  padding: 14px 14px;
  border-radius: 12px;
  cursor:pointer;
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: none;
}
.submit:hover{
  background: rgba(153, 125, 69, 0.1);
  filter: none;
}

/* Footer */
.footer{
  padding: 54px 18px 42px;
  text-align:center;
  background: linear-gradient(180deg, #fdf8f2 0%, #f5ebe0 45%, #efe4d6 100%);
  color: var(--text);
  border-top: 1px solid rgba(210, 185, 140, 0.45);
}
.footer-names{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--text);
  letter-spacing: 0.02em;
}
.footer-date{
  margin-top: 6px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--soft-ink);
  opacity: 1;
}

@media (max-width: 780px){
  #menu{
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  #menu::-webkit-scrollbar{
    height: 4px;
  }
  #menu::-webkit-scrollbar-thumb{
    background: rgba(153, 125, 69, 0.35);
    border-radius: 4px;
  }
  .cards{ grid-template-columns: 1fr; }
  .maps-grid{ grid-template-columns: 1fr; }
  .countdown{ flex-wrap:wrap; gap: 22px; }
  .map-card .map-frame{
    margin: 6px 10px 14px;
  }
  .map-frame__iframe{
    height: clamp(200px, 55vw, 280px);
  }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; animation:none !important; }
  body{ background-attachment: scroll; }
  body::before{
    opacity: 0.32;
  }
  .floral-corners::before{
    opacity: 0.28;
  }
}

/* ============================= */
/* ✅ RSVP MOBILE FIX (SAFE PATCH) */
/* ============================= */

@media (max-width: 600px){

  /* Radio buttons vertical */
  .radio-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Stepper layout fix */
  .stepper-row{
    flex-direction: column;
    align-items: flex-start;
  }

  .stepper{
    width: 100%;
    justify-content: flex-start;
  }

  .stepper input{
    width: 70px;
  }

  /* Better spacing */
  form{
    padding: 18px 14px;
  }

  /* Prevent overflow */
  input, textarea{
    font-size: 16px;
  }
}
  /* ============================= */
/* ✅ MOBILE MENU UPGRADE */
/* ============================= */

@media (max-width: 600px){

  #menu{
    position: fixed;
    bottom: 0;
    top: auto;
    padding: 10px 12px;
    gap: 8px;
    background: rgba(255, 252, 250, 0.94);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(200, 175, 120, 0.35);
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #menu::-webkit-scrollbar{
    display: none;
  }

  #menu a{
    flex: 0 0 auto;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--label-ink);
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 252, 251, 0.55);
    border: 1px solid rgba(212, 185, 120, 0.35);
    white-space: nowrap;
  }

  #menu a:hover{
    background: rgba(139, 105, 20, 0.08);
  }

  /* για να μην καλύπτει το content */
  #onepage{
    padding-bottom: 80px;
  }
}

/* Thank-you (μετά RSVP) */
.thank-you-page{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 18px calc(48px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #fdf8f2 0%, #efe8dc 55%, #e8dfd2 100%);
}
.thank-you-card{
  width: min(540px, 100%);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid rgba(160, 130, 70, 0.22);
  box-shadow: 0 20px 56px rgba(100, 78, 38, 0.09);
  text-align: center;
}
.thank-you-eyebrow{
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(153, 125, 69, 0.52);
  margin: 0 0 14px;
}
.thank-you-title{
  font-family: var(--serif);
  font-size: clamp(30px, 5.5vw, 42px);
  font-weight: 600;
  font-style: italic;
  margin: 0 0 20px;
  color: var(--text);
  line-height: 1.15;
}
.thank-you-message{
  font-family: var(--sans);
  font-size: clamp(17px, 2.3vw, 19px);
  line-height: 1.7;
  margin: 0 0 30px;
  color: var(--label-ink);
}
.thank-you-back{
  text-decoration: none;
}

