:root {
  --text-main: #2b2522;
  --accent: #c78263;      /* rose-gold button colour */
  --accent-dark: #a8684f;
  --muted: #7a6a62;
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Layout helpers ---------- */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

@media (min-width: 900px) {
  .section {
    padding: 5rem 0;
  }
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__brand {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
}

/* Hamburger button: hidden on desktop by default */
.nav__toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.nav__link {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.25s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/hero_blonde8.webp");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  filter: brightness(0.6);
  z-index: -2;
}

.hero {
  position: relative;
  min-height: 70vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 55%, rgba(0, 0, 0, 0.85));
  z-index: -1;
}

.hero__content {
  margin-top: 3rem;   /* makes room for fixed header */
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.9s ease-out 0.2s forwards;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw + 1rem, 3.6rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

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

.btn--ghost {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  margin-left: 0.75rem;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Intro tagline ---------- */

.intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--muted);
  padding-bottom: 3rem;
}

.intro strong {
  color: var(--text-main);
  font-weight: 500;
}

/* ---------- Section headings ---------- */

.section-heading {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.section-heading--sub {
  font-size: 1.6rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   SERVICES SECTION
   - Card grid
   - Card styling / icon / animation
   - Two price layouts:
       1) .service-table (3-column table layout)
       2) .service__list--with-prices (flex+grid for simple rows)
   ============================================================ */

/* Grid of service cards */
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  text-align: left;
}

@media (max-width: 720px) {
  .services {
    grid-template-columns: 1fr;
  }
}

/* Individual service card */
.service {
  position: relative;
  padding: 1.9rem 1.4rem 1.6rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Optional short tagline directly under title (not used yet) */
.service__tagline {
  margin-top: 0.35rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Card icon */
.service__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-dark);
  background: linear-gradient(135deg, #fbe9df, #f4d1c0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* Hover elevation */
.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.service:hover .service__icon {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(135deg, #f7d3c0, #e8a887);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* Fade-up animation for cards */
.services .service {
  opacity: 0;
  transform: translateY(18px);
  animation: serviceFadeUp 0.8s ease-out forwards;
}

.services .service:nth-child(1) { animation-delay: 0.1s; }
.services .service:nth-child(2) { animation-delay: 0.22s; }
.services .service:nth-child(3) { animation-delay: 0.34s; }
.services .service:nth-child(4) { animation-delay: 0.46s; }

@keyframes serviceFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.service__name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.service__text {
  font-size: 0.9rem;
  color: var(--muted);
}

/* --------- Shared list price layout (bottom two cards) --------- */

.service__list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
}

/* Flex row: [label ............] [price block] */
.service__list--with-prices li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

/* Left side: service description */
.service__item-label {
  flex: 1 1 auto;
  min-width: 0;
}

/* Right side: price text (“from $50” or “$50”) */
.service__price-inline {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  column-gap: 0.4rem;
  min-width: 6rem;
  justify-content: end;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
  text-align: right;
}

/* .service__price-from / .service__price-amount are not used
   in this layout; they are handled in the table below.
   (Keeping them unused avoids confusion, so no extra rules here.) */

/* --------- Table price layout (top two cards) --------- */

.service-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
}

.service-table td {
  font-size: 0.95rem;
  padding: 0 0 0.15rem 0;
}

/* FIX: Prevent misalignment on mobile when left column wraps */
.service-table td {
  vertical-align: top;
}


/* Column 1: label */
.service-table .service__item-label {
  text-align: left;
}

/* Column 2: “from” */
.service-table .service__price-from {
  white-space: nowrap;
  text-align: right;
  padding-right: 0.4rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
}

/* Column 3: amount “$165” – aligned left so the digits line up */
.service-table .service__price-amount {
  white-space: nowrap;
  text-align: left;
  padding-left: 0.35rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
}

/* ============================================================
   END SERVICES
   ============================================================ */


/* ---------- Portfolio ---------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
}

.portfolio-item img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  background: #f5f2ef;
  border-radius: 18px;
  transition: transform 0.28s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.portfolio-item__caption {
  padding: 0.8rem 1rem 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.portfolio-item:hover .portfolio-item__caption {
  color: var(--text-main);
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item img {
    height: 260px;
  }
}

/* ---------- Testimonials ---------- */

.testimonials {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.98rem;
  color: var(--muted);
}

.stars-row {
  color: #f5c518;   /* gold stars */
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

#testimonial-container {
  padding: 1.5rem 1rem;
  margin-top: 0.25rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.03);
  transition: opacity 0.6s ease-in-out;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial-author {
  margin-top: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.9rem;
}

.testimonial-source {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

#testimonial-container {
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.testimonial-more:hover {
  color: var(--accent-dark);
  transform: translateX(2px);
}

/* ---------- Footer ---------- */

.site-footer {
  background: #111;
  color: #eee;
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.9rem;
  color: #c2c2c2;
  margin-bottom: 1rem;
}

.footer-contact {
  font-size: 0.9rem;
  color: #c2c2c2;
}

.footer-contact a {
  color: #fff;
}

.footer-cta {
  margin-top: 1rem;
}

.footer-meta {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.footer-pill {
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  border: 1px solid #444;
  font-size: 0.8rem;
}

/* ---------- Location / Map ---------- */

.section--map {
  padding-top: 0;
  padding-bottom: 4rem;
}

.map-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 1.5rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.map-actions {
  text-align: center;
  margin-bottom: 1.5rem;
}

.map {
  margin-top: 1rem;
}

.map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ----- MOBILE NAV (Below 720px) ----- */
@media (max-width: 720px) {

  /* Hide desktop menu by default */
  .nav__links {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    flex-direction: column;
    gap: 1rem;
    width: 180px;
    text-align: right;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  /* SHOW HAMBURGER ON MOBILE */
  .nav__toggle {
    display: block;
    margin-left: auto;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  /* When menu is active */
  .nav__links.active {
    display: flex;
  }
}


/* ----- MOBILE SERVICE TABLE SPACING FIX (Below 480px) ----- */
@media (max-width: 480px) {
  .service-table td {
    padding-bottom: 0.1rem;
  }
}