/* ═══════════════════════════════════════════════
   SUNRISE CLASSIC — Shared Styles
   ═══════════════════════════════════════════════ */

:root {
  --cream: #FDF6EC;
  --cream-dark: #F5EBDA;
  --warm-white: #FFFDF8;
  --gold: #C19A4E;
  --gold-light: #D4B876;
  --gold-dark: #A07E3A;
  --burgundy: #7A3B3E;
  --burgundy-light: #9B5558;
  --forest: #4A6B52;
  --forest-light: #6A8B72;
  --brown: #6B5140;
  --brown-light: #8B7160;
  --text-dark: #3D2E22;
  --text-body: #5A4A3A;
  --text-light: #8A7A6A;
  --border: #E0D4C0;
  --shadow: rgba(107, 81, 64, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', 'Georgia', serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* ── Utility ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── Decorative Rule ── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 12px 0 28px;
}
.ornament::before,
.ornament::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--gold-light);
}
.ornament span {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

/* ── Section Labels ── */
.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Lora', serif;
  font-weight: 600;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 8px;
  line-height: 1.2;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--burgundy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 0.3px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--gold-light);
  text-decoration: none;
}
.top-bar a:hover { text-decoration: underline; }

/* ── Header / Nav ── */
header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(193, 154, 78, 0.3);
}
.logo-text h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.logo-text p {
  font-size: 11.5px;
  color: var(--text-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'Lora', serif;
  font-weight: 500;
  margin-top: 1px;
}

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  font-family: 'Lora', serif;
  font-size: 14.5px;
  color: var(--text-body);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}
nav a:hover {
  color: var(--burgundy);
  background: var(--cream);
}
nav a.active {
  color: var(--burgundy);
  background: var(--cream);
  font-weight: 600;
}
nav .cta-btn {
  background: var(--burgundy);
  color: white !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 500;
  margin-left: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--burgundy);
}
nav .cta-btn:hover {
  background: var(--burgundy-light) !important;
  border-color: var(--burgundy-light);
  color: white !important;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: 72px 0;
  background: var(--text-dark);
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61,46,34,0.7) 0%, rgba(61,46,34,0.5) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .hero-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Lora', serif;
  font-weight: 500;
  margin-bottom: 12px;
}
.page-hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
}
.page-hero p {
  font-size: 17px;
  color: rgba(253,246,236,0.75);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  border: 1px solid rgba(253,246,236,0.35);
}
.btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--burgundy);
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  border: 1px solid var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: white; }

/* ── Content Sections ── */
.section-cream { padding: 80px 0; background: var(--cream); }
.section-white { padding: 80px 0; background: var(--warm-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

/* ── Cards ── */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-3px);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 28px 24px;
}
.card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.card-body p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── Service Cards (icon style) ── */
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 32px 36px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-3px);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 1px solid var(--border);
  color: var(--gold-dark);
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── CTA Band ── */
.cta-band {
  position: relative;
  padding: 72px 0;
  background: var(--text-dark);
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.cta-band .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.cta-band-text { max-width: 560px; }
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.25;
}
.cta-band p {
  color: rgba(253,246,236,0.7);
  font-size: 15.5px;
  line-height: 1.75;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold-light);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
  opacity: 0.5;
}
.testimonial-card blockquote {
  font-size: 15.5px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 8px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}
.testimonial-relation {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ── Two-Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  border: 4px solid white;
}
.two-col-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.two-col-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.two-col-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.two-col-text p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 16px;
}
.two-col-text .btn-outline { margin-top: 8px; }

/* ── List with checks ── */
.check-list {
  list-style: none;
  margin: 16px 0 20px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  border: 3px solid white;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── Gallery Strip ── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.gallery-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.gallery-strip img:hover { opacity: 0.88; }

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 24px;
  transition: box-shadow 0.3s ease;
}
.team-card:hover { box-shadow: 0 8px 28px var(--shadow); }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
  display: block;
}
.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 13.5px;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.team-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 56px 0;
}
.stat-item .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* ── Timeline ── */
.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}
.timeline-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.timeline-item .timeline-year {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Contact Form ── */
.contact-form {
  max-width: 600px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--text-body);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-submit {
  display: inline-block;
  background: var(--burgundy);
  color: white;
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  letter-spacing: 0.3px;
  margin-top: 8px;
}
.form-submit:hover { background: var(--burgundy-light); }

/* ── Contact Info Card ── */
.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
}
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.contact-info-item p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-info-item a {
  color: var(--burgundy);
  text-decoration: none;
}
.contact-info-item a:hover { text-decoration: underline; }

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-question:hover { color: var(--burgundy); }
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── Daily Schedule ── */
.schedule-list {
  max-width: 600px;
  margin: 0 auto;
}
.schedule-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.schedule-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-dark);
  min-width: 100px;
  flex-shrink: 0;
}
.schedule-desc h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.schedule-desc p {
  font-size: 14px;
  color: var(--text-light);
}

/* ── Footer ── */
footer {
  background: var(--text-dark);
  color: rgba(253,246,236,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,246,236,0.1);
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 300px;
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(253,246,236,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(253,246,236,0.35);
}
.footer-bottom a {
  color: rgba(253,246,236,0.45);
  text-decoration: none;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .services-grid, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero h2 { font-size: 34px; }
  .section-title { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
}
