/* ============================================================
   Sianna — Custom Stylesheet
   Design system: Marcellus + PT Serif · Ivory / Terracotta / Teal
   ============================================================ */

/* --- Base --------------------------------------------------- */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

/* --- Display / heading typography -------------------------- */

.hero-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: clamp(2.375rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: #F0EDE6;
}

.hero-subtitle {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240, 237, 230, 0.8);
}

.section-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
  color: #303636;
}

.page-hero-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: #303636;
}

/* --- Eyebrow ----------------------------------------------- */

.eyebrow {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4967D;
  display: block;
}

/* --- Pull quote -------------------------------------------- */

.pull-quote {
  font-family: 'Marcellus', Georgia, serif;
  font-size: clamp(1.375rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  border-left: 1.5px solid #D4967D;
  padding-left: 1.75rem;
  max-width: 480px;
  color: #303636;
}

/* --- Buttons ----------------------------------------------- */

/* Primary — teal fill */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background-color: #495A58;
  color: #E5E3DC;
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  min-height: 44px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #3a4846;
  color: #E5E3DC;
}

/* Filled — terracotta fill, for dark sections */
.btn-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background-color: #D4967D;
  color: #FFFFFF;
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  min-height: 44px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-filled:hover {
  background-color: #c4856c;
}

/* Ghost — light border, for use on hero */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background-color: transparent;
  color: #F0EDE6;
  border: 0.5px solid rgba(240, 237, 230, 0.6);
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  min-height: 44px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  background-color: rgba(240, 237, 230, 0.1);
}

/* Text link — terracotta underline */
.link-text {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D4967D;
  text-decoration: none;
  border-bottom: 0.5px solid #D4967D;
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.link-text:hover {
  opacity: 0.7;
}

/* --- Navigation -------------------------------------------- */

.nav-link {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #303636;
  transition: color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: #D4967D;
}

/* Begin Here nav CTA */
.nav-cta {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #303636;
  text-decoration: none;
  border-bottom: 0.5px solid #D4967D;
  padding-bottom: 1px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  color: #D4967D;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-family: 'Marcellus', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  color: #303636;
  border-bottom: 1px solid rgba(48, 54, 54, 0.1);
  transition: color 0.2s ease;
  min-height: 44px;
  line-height: 44px;
}

.mobile-nav-link:hover {
  color: #D4967D;
}

.footer-link {
  font-family: 'PT Serif', Georgia, serif;
  color: rgba(229, 227, 220, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.875rem;
}

.footer-link:hover {
  color: #D4967D;
}

/* Dropdown */
.dropdown-menu {
  transform-origin: top center;
}

/* --- Mobile drawer ----------------------------------------- */

.mobile-drawer {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

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

.page-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid rgba(48, 54, 54, 0.1);
}

.hero-full {
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-color: #303636;
}

.hero-full .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(48, 54, 54, 0.05) 0%,
    rgba(48, 54, 54, 0.30) 55%,
    rgba(48, 54, 54, 0.72) 100%
  );
  z-index: 1;
}

.hero-full .hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

/* --- Section spacing --------------------------------------- */

.section {
  padding: clamp(4rem, 8vw, 5rem) 0;
}

.section-sm {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

/* --- Cards ------------------------------------------------- */

.card {
  background: #FFFFFF;
  padding: 36px 28px;
  transition: background-color 0.25s ease;
}

.card:hover {
  background-color: #F7F5F1;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 2rem;
  break-inside: avoid;
}

/* --- Dark section (teal) ----------------------------------- */

.dark-section {
  background-color: #495A58;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* --- CTA strip (maps to teal) ------------------------------ */

.cta-strip {
  background: #495A58;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

/* --- Divider ----------------------------------------------- */

.divider {
  width: 3rem;
  height: 1px;
  background-color: #D4967D;
  display: block;
  margin: 1.5rem 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Prose ------------------------------------------------- */

.prose-elegant {
  font-family: 'PT Serif', Georgia, serif;
  max-width: 520px;
  line-height: 1.85;
  font-size: 0.9375rem;
  color: #495A58;
}

.prose-elegant p + p {
  margin-top: 1.25em;
}

/* --- Callout ----------------------------------------------- */

.callout {
  background: rgba(212, 150, 125, 0.08);
  border-left: 1.5px solid #D4967D;
  padding: 1.5rem 1.75rem;
}

/* --- Forms ------------------------------------------------- */

.form-label {
  display: block;
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #303636;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(48, 54, 54, 0.2);
  background-color: #FFFFFF;
  color: #303636;
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #D4967D;
  box-shadow: 0 0 0 3px rgba(212, 150, 125, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-error {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: 0.35rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.req {
  color: #D4967D;
  margin-left: 0.15rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* --- Timeline ---------------------------------------------- */

.timeline-item {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(48, 54, 54, 0.15);
  padding-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D4967D;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* --- Alerts ------------------------------------------------ */

.alert-error {
  background: #fdf2f2;
  border: 1px solid #e8b4b4;
  color: #8b1a1a;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: #f2fdf5;
  border: 1px solid #a3d9b1;
  color: #1a5c2a;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

/* --- Utility ----------------------------------------------- */

.lotus-icon {
  width: 2rem;
  height: 2rem;
  color: #D4967D;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.img-placeholder {
  background: linear-gradient(135deg, #E5E3DC 0%, rgba(212, 150, 125, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4967D;
  font-family: 'Marcellus', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
