@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Satisfy&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --bg: #F7E9D4;
  --sand: #EED9B8;
  --sand-dark: #D8B97A;
  --gold: #D8B97A;
  --terracotta: #C86A4A;
  --terracotta-dark: #A85538;
  --maroon: #8B4A36;
  --brown: #4A4A4A;
  --text-muted: #6A6A6A;
  --sage: #A7B59E;
  --sage-light: #E8EDE6;
  --circle-pink: #F4B8B8;
  --circle-orange: #F7CFAE;
  --circle-teal: #BFD8C2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg);
  color: var(--brown);
  overflow-x: hidden;
}

a { color: inherit; }

/* ===== TOP WAVE BAND ===== */
.page-wave-top {
  width: 100%;
  height: 28px;
  background: repeating-linear-gradient(
    180deg,
    #C86A4A 0px, #C86A4A 4px,
    #D8B97A 4px, #D8B97A 8px,
    #B85840 8px, #B85840 12px,
    #C8A060 12px, #C8A060 16px,
    #C86A4A 16px, #C86A4A 20px,
    #D8B97A 20px, #D8B97A 24px,
    #B85840 24px, #B85840 28px
  );
  clip-path: polygon(
    0% 0%, 3% 50%, 6% 100%, 9% 50%, 12% 0%,
    15% 50%, 18% 100%, 21% 50%, 24% 0%,
    27% 50%, 30% 100%, 33% 50%, 36% 0%,
    39% 50%, 42% 100%, 45% 50%, 48% 0%,
    51% 50%, 54% 100%, 57% 50%, 60% 0%,
    63% 50%, 66% 100%, 69% 50%, 72% 0%,
    75% 50%, 78% 100%, 81% 50%, 84% 0%,
    87% 50%, 90% 100%, 93% 50%, 96% 0%,
    100% 50%, 100% 0%
  );
}

/* ===== HEADER ===== */
header {
  background-color: var(--bg);
  text-align: center;
}

/* ===== LOGO ===== */
.logo {
  padding: 28px 20px 10px;
}

.logo-circles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.logo-circles span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: block;
}

.circle-pink   { background: var(--circle-pink); }
.circle-orange { background: var(--circle-orange); }
.circle-teal   { background: var(--circle-teal); }

.logo-name {
  font-family: 'Bradley Hand ITC', 'Bradley Hand', 'Satisfy', cursive;
  font-size: 3.2rem;
  color: var(--brown);
  line-height: 1;
}

.logo-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 5px;
  color: var(--brown);
  font-weight: 600;
  margin-top: 2px;
}

/* ===== TAGLINE BAR ===== */
.tagline-bar {
  border-top: 1px solid var(--sage);
  border-bottom: 1px solid var(--sage);
  padding: 10px 20px;
  margin: 10px 0 0;
}

.tagline-bar p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--terracotta);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== NAV ===== */
nav {
  background-color: var(--bg);
  padding: 16px 0 14px;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.nav-list li a {
  text-decoration: none;
  color: var(--brown);
  font-size: 0.95rem;
  padding: 0 20px;
  transition: color 0.2s;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-dot {
  color: var(--sage);
  font-size: 0.55rem;
  vertical-align: middle;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  min-height: 380px;
  background: linear-gradient(120deg, #C86A4A 0%, #D4825E 25%, #E8B090 55%, #D8B97A 100%);
  position: relative;
  padding: 40px 0;
}

.hero-photo {
  width: 36%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px 0 40px;
}

.hero-photo img {
  width: 100%;
  max-width: 300px;
  max-height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 4px;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 460px;
  background: linear-gradient(160deg, #A85538 0%, #C86A4A 50%, #985030 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  font-size: 0.85rem;
}

.hero-content {
  width: 64%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 70px 60px 50px;
  text-align: center;
}

.hero-content .hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--brown);
  font-weight: 400;
  margin-bottom: 6px;
}

.hero-content h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 4.4rem;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 32px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 14px 38px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

/* ===== WAVE SVG DIVIDERS ===== */
.wave-divider { width: 100%; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  padding: 52px 20px 32px;
}

.section-title h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.6rem;
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-title h2 .deco-line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
}

/* ===== TRANSFORMATIONS ===== */
.transformations {
  background-color: var(--bg);
  padding: 0 0 60px;
}

.gallery-carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 56px;
}

.gallery-track-wrapper { overflow: hidden; }

.gallery-track {
  display: flex;
  gap: 0;
  transition: transform 0.4s ease;
}

/* Each slide = one full-width before/after pair */
.gallery-item {
  min-width: 100%;
  flex-shrink: 0;
}

.pair-room {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--maroon);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.pair-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pair-image { position: relative; }

.gallery-label {
  background: var(--terracotta);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 10px;
  letter-spacing: 0.3px;
  text-align: center;
}

.gallery-label--before { background: var(--sage); }

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--sand-dark);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  padding: 0;
  z-index: 2;
}

.carousel-btn:hover { background: #fff; }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

@media (max-width: 560px) {
  .pair-images { grid-template-columns: 1fr; }
  .gallery-item img { height: 200px; }
}

/* ===== OFFER SECTION ===== */
.offer-section {
  background-color: var(--sage-light);
  padding: 56px 0 60px;
}

.offer-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 44px;
  align-items: flex-start;
}

.offer-photo {
  flex: 0 0 220px;
}

.offer-photo img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.offer-photo-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(160deg, var(--sand-dark), var(--sand));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  font-size: 0.85rem;
}

.offer-services { flex: 1; }

.offer-services h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.4rem;
  color: var(--maroon);
  margin-bottom: 20px;
  line-height: 1.1;
}

.services-list {
  list-style: none;
  line-height: 2.1;
}

.services-list li {
  font-size: 0.95rem;
  color: var(--brown);
}

.services-list li::before {
  content: '• ';
  color: var(--brown);
}

.offer-testimonials {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 50px;
}

.testimonial { text-align: right; }

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--brown);
}

.testimonial cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  display: block;
  margin-top: 4px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background-color: var(--bg);
  text-align: center;
  padding: 64px 20px 56px;
}

.cta-section h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 26px;
}

.social-icons {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icons a {
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, transform 0.15s;
}

.social-icons a:hover {
  color: var(--terracotta);
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--sand-dark);
  text-align: center;
  padding: 32px 20px 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo .logo-name { font-size: 2rem; }
.footer-logo .logo-sub { font-size: 0.65rem; letter-spacing: 4px; }

/* ===== RESA SECTION ===== */
.resa-section {
  background-color: var(--sage-light);
  padding: 40px 20px;
}

.resa-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.resa-inner img {
  width: 120px;
  flex-shrink: 0;
}

.resa-text strong {
  display: block;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 4px;
}

.resa-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== WHY STAGE SECTION (homepage) ===== */
.why-stage {
  background-color: var(--sand);
  padding: 56px 20px;
}

.why-stage-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-stage .section-title h2 {
  font-family: 'Bradley Hand ITC', 'Bradley Hand', 'Satisfy', cursive;
}

.why-stage-inner p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}

@media (max-width: 520px) {
  .resa-inner { flex-direction: column; text-align: center; }
}

.footer-info {
  text-align: left;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-phone a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-phone a:hover { color: var(--terracotta); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(120deg, #C86A4A 0%, #D4825E 40%, #E8B090 100%);
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3.4rem;
  color: var(--brown);
  margin-bottom: 8px;
}

.page-hero p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown);
  opacity: 0.85;
}

/* ===== SERVICES PAGE ===== */
.services-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px;
}

.service-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.service-card:last-child { border-bottom: none; }

.service-icon {
  flex: 0 0 56px;
  height: 56px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--maroon);
  margin-bottom: 10px;
}

.service-card p {
  line-height: 1.7;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

.about-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.about-photo {
  flex: 0 0 280px;
}

.about-photo img {
  width: 100%;
  border-radius: 6px;
}

.about-text h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.6rem;
  color: var(--maroon);
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-intro {
  text-align: center;
  padding: 48px 20px 16px;
  max-width: 700px;
  margin: 0 auto;
}

.portfolio-intro p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.portfolio-grid {
  max-width: 1060px;
  margin: 0 auto;
  padding: 32px 40px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.portfolio-card {
  background: var(--sand);
  border-radius: 4px;
  overflow: hidden;
}

.portfolio-card-label {
  background: var(--terracotta);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 12px;
}

.portfolio-card-label--before {
  background: var(--sage);
}

.portfolio-card img,
.portfolio-card-placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.portfolio-card-placeholder {
  background: linear-gradient(135deg, var(--sand-dark), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  font-size: 0.8rem;
}

.portfolio-card-caption {
  padding: 12px 14px;
}

.portfolio-card-caption h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: 4px;
}

.portfolio-card-caption p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.4rem;
  color: var(--maroon);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.contact-detail a {
  text-decoration: none;
  color: var(--brown);
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--terracotta); }

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-form { flex: 1; }

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--sand-dark);
  border-radius: 4px;
  background: #F7E9D4;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--brown);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

/* ===== BOTTOM WAVE BAND ===== */
.page-wave-bottom {
  width: 100%;
  height: 28px;
  background: repeating-linear-gradient(
    180deg,
    #C86A4A 0px, #C86A4A 4px,
    #D8B97A 4px, #D8B97A 8px,
    #B85840 8px, #B85840 12px,
    #C8A060 12px, #C8A060 16px,
    #C86A4A 16px, #C86A4A 20px,
    #D8B97A 20px, #D8B97A 24px,
    #B85840 24px, #B85840 28px
  );
  clip-path: polygon(
    0% 100%, 3% 50%, 6% 0%, 9% 50%, 12% 100%,
    15% 50%, 18% 0%, 21% 50%, 24% 100%,
    27% 50%, 30% 0%, 33% 50%, 36% 100%,
    39% 50%, 42% 0%, 45% 50%, 48% 100%,
    51% 50%, 54% 0%, 57% 50%, 60% 100%,
    63% 50%, 66% 0%, 69% 50%, 72% 100%,
    75% 50%, 78% 0%, 81% 50%, 84% 100%,
    87% 50%, 90% 0%, 93% 50%, 96% 100%,
    100% 50%, 100% 100%
  );
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-photo, .hero-content { width: 100%; }
  .hero-photo { min-height: 300px; }
  .hero-content { padding: 44px 30px; }
  .hero-content h1 { font-size: 3rem; }

  .offer-inner { flex-direction: column; align-items: center; padding: 0 24px; }
  .offer-testimonials { padding-top: 0; }
  .testimonial { text-align: left; }

  .about-grid { flex-direction: column; }
  .about-photo { flex: none; width: 240px; }
  .contact-section { flex-direction: column; gap: 40px; }

  .gallery-item { min-width: calc(100% - 0px); }
  .portfolio-grid { padding: 24px 20px 40px; }
  .services-page, .about-section, .contact-section { padding: 40px 24px; }
}

@media (max-width: 520px) {
  .logo-name { font-size: 2.4rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .section-title h2 { font-size: 2rem; }
  .offer-inner { gap: 28px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-info { text-align: center; }
}
