/* ============================================================
   Emerald Shore Hospitality — Site-wide stylesheet
   ============================================================ */

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1f1721;
  background: #ffffff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
address { font-style: normal; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  line-height: 1.1;
  font-weight: 400;
  color: #1f1721;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout helpers --- */
.container { width: min(1200px, 92vw); margin: 0 auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tint { background: #fff7ed; }
.section--dark {
  background: linear-gradient(135deg, #1f1721 0%, #2a1a35 100%);
  color: #f4e9e9;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #ffffff; }

/* --- Header / Navigation --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.4rem 0;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 30px rgba(31, 23, 33, 0.12);
  padding: 0.85rem 0;
}
.nav {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1.05;
}
.logo span { display: block; font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase; font-family: 'Jost', sans-serif; opacity: 0.85; margin-top: 2px; }
.site-header.is-solid .logo,
.site-header.is-solid .nav-links a { color: #1f1721; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  position: relative;
  color: #ffffff;
  font-size: 0.97rem;
  font-weight: 500;
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #F97316, #EC4899, #8B5CF6);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a.active,
.nav-links a[aria-current="page"] { color: #F97316; }
.site-header.is-solid .nav-links a.active,
.site-header.is-solid .nav-links a[aria-current="page"] { color: #EC4899; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.site-header.is-solid .nav-toggle span { background: #1f1721; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: linear-gradient(135deg, #F97316 0%, #EC4899 50%, #8B5CF6 100%);
  position: relative;
  padding-top: 5rem;
}
.hero__content {
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  max-width: 640px;
  justify-self: center;
}
.hero__content h1 {
  color: #ffffff;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.hero__content p {
  font-size: 1.18rem;
  opacity: 0.96;
  margin-bottom: 2rem;
  max-width: 38ch;
}
.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-top-left-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn::after {
  content: "\2192";
  font-size: 1.15em;
  transition: transform 0.25s ease;
}
.btn:hover { transform: scale(1.04); }
.btn:hover::after { transform: translateX(5px); }
.btn--light {
  background: #ffffff;
  color: #1f1721;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.btn--light:hover { box-shadow: 0 16px 40px rgba(236, 72, 153, 0.35); }
.btn--dark {
  background: #1f1721;
  color: #ffffff;
}
.btn--dark:hover { box-shadow: 0 16px 40px rgba(31, 23, 33, 0.3); }
.btn--ghost {
  background: transparent;
  color: #1f1721;
  border: 2px solid #1f1721;
}
.btn--ghost:hover { background: #1f1721; color: #ffffff; }

/* --- Generic content sections --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--image-left .split__media { order: -1; }
.split__media img {
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  object-fit: cover;
  border-radius: 1.75rem;
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.18);
}
.split__content h2 { margin-bottom: 1.25rem; }
.split__content p { margin-bottom: 1.6rem; }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section__head h2 { margin-bottom: 1rem; }
.section__head p { font-size: 1.1rem; opacity: 0.85; }

/* --- Card grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.25rem 1.9rem;
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.section--dark .card { box-shadow: 0 18px 40px rgba(139, 92, 246, 0.3); }
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(139, 92, 246, 0.28);
}
.card__icon {
  width: 64px; height: 64px;
  border-radius: 1rem;
  display: grid; place-items: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, #F97316, #EC4899);
  color: #ffffff;
}
.card--purple .card__icon { background: linear-gradient(135deg, #EC4899, #8B5CF6); }
.card--orange .card__icon { background: linear-gradient(135deg, #F97316, #fbbf24); }
.card h3 { margin-bottom: 0.7rem; font-size: 1.5rem; }
.card p { flex-grow: 1; margin-bottom: 1.4rem; }
.card .btn { align-self: flex-start; padding: 0.7rem 1.3rem; font-size: 0.92rem; }

/* --- Stats strip --- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stats__num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, #F97316, #EC4899, #8B5CF6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stats__label { display: block; margin-top: 0.5rem; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }

/* --- Contact / Address block --- */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-card {
  background: #ffffff;
  border-radius: 1.75rem;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}
.contact-card h3 { margin-bottom: 1.5rem; }
address.nap {
  font-size: 1.08rem;
  line-height: 2;
}
address.nap strong { display: block; font-family: 'DM Serif Display', serif; font-size: 1.4rem; margin-bottom: 0.6rem; color: #1f1721; }
address.nap a { color: #EC4899; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
address.nap a:hover { border-color: #EC4899; }
.contact-form { display: grid; gap: 1.1rem; }
.contact-form label { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #ead9e3;
  border-radius: 0.85rem;
  font: inherit;
  font-family: 'Jost', sans-serif;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #EC4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* --- Footer --- */
.site-footer {
  background: linear-gradient(135deg, #1f1721 0%, #2a1a35 100%);
  color: #d9c9d4;
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}
.footer-brand .logo { color: #ffffff; margin-bottom: 1rem; }
.footer-brand p { opacity: 0.8; max-width: 34ch; }
.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { opacity: 0.8; transition: color 0.25s, opacity 0.25s; }
.footer-col a:hover { color: #EC4899; opacity: 1; }
.footer-bottom {