/* ═══════════════════════════════════════════════════════
   CEDRIAN GREVE ARTISTRY — Shared Stylesheet
   Brand Colors sourced from official logo files
═══════════════════════════════════════════════════════ */

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

:root {
  /* Official Brand Colors */
  --peacock:    #0f2e24;  /* primary dark — nav, hero overlays */
  --jade:       #2d4c42;  /* secondary dark — section headers, footers */
  --charcoal:   #2c3235;  /* deep charcoal — body text dark */
  --blue-onyx:  #000e18;  /* near-black — deepest accent */
  --eucalyptus: #728878;  /* muted sage — accent text, dividers */
  --sky:        #c3d0cc;  /* light blue-grey — subtle backgrounds */
  --slate:      #b6aeab;  /* warm grey — muted UI elements */
  --cotton:     #ded6d3;  /* warm greige — off-white backgrounds */
  --satin:      #f2f2f2;  /* near-white — lightest bg */
  --blush:      #eec7b4;  /* warm blush — warm accent */
  --white:      #ffffff;

  /* Functional assignments */
  --nav-bg:         var(--peacock);
  --footer-bg:      var(--jade);
  --accent:         var(--eucalyptus);
  --accent-light:   var(--sky);
  --bg-cream:       var(--satin);
  --bg-warm:        var(--cotton);
  --text-dark:      var(--charcoal);
  --text-mid:       #555552;
  --text-light:     #888480;
  --border:         #ddd9d5;

  /* Typography */
  --script: 'Cormorant Garamond', serif;
  --sans:   'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--script);
  font-weight: 300;
  line-height: 1.2;
}
h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--jade); margin-bottom: 16px; }
h3 { font-size: 1.4rem; color: var(--jade); margin-bottom: 10px; }
p  { color: var(--text-mid); margin-bottom: 14px; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--eucalyptus);
  margin-bottom: 10px;
}

.divider {
  width: 40px; height: 1px;
  background: var(--eucalyptus);
  margin: 18px 0;
}
.divider-center { margin: 18px auto; }

/* ── LAYOUT ── */
section { padding: 64px 24px; }
.section-inner { max-width: 1040px; margin: 0 auto; }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-weight: 400;
}
.btn-dark {
  background: var(--jade);
  color: var(--white);
  border: 1px solid var(--jade);
}
.btn-dark:hover { background: var(--peacock); border-color: var(--peacock); }

.btn-outline {
  border: 1px solid var(--jade);
  color: var(--jade);
  background: transparent;
}
.btn-outline:hover { background: var(--jade); color: var(--white); }

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.75);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: var(--white); color: var(--jade); }

/* ── NAVIGATION ── */
#site-nav {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 60px;
}
.nav-logo-wrap img {
  height: 34px;
  width: auto;
  opacity: 1;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  flex-direction: column;
  background: var(--nav-bg);
  position: absolute;
  top: 68px; left: 0; right: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-menu.open { display: flex; }
.nav-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--blush); }
.nav-menu a:last-child { border-bottom: none; }

@media (min-width: 800px) {
  .hamburger { display: none; }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    border: none;
    gap: 2px;
  }
  .nav-menu a { padding: 8px 12px; border: none; font-size: 0.62rem; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}
/* Logo watermark in hero */
.hero-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 400px);
  opacity: 0.07;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 40px 28px;
  max-width: 600px;
}
.hero-content h1 {
  font-family: var(--script);
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 8px;
}
.hero-content .hero-sub {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
  display: block;
}
.hero-content .hero-markets {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  display: block;
}

/* ── CREDENTIALS STRIP ── */
.cred-strip {
  background: var(--peacock);
  padding: 16px 24px;
  text-align: center;
}
.cred-strip p {
  color: rgba(255,255,255,0.78);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0;
  line-height: 2;
}
.cred-strip strong { color: var(--blush); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 220px;
  background: var(--jade);
  display: flex;
  align-items: flex-end;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url('../logos/logo-cotton.svg');
  background-repeat: no-repeat;
  background-position: center right 40px;
  background-size: 280px;
  opacity: 0.05;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, var(--jade) 45%, transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 {
  font-family: var(--script);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--white);
  font-weight: 300;
}
.page-hero-content p {
  color: var(--sky);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 6px 0 0;
}

/* ── TWO COLUMN GRID ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 680px) { .two-col { grid-template-columns: 1fr 1fr; } }
@media (min-width: 680px) { .two-col-narrow { grid-template-columns: 340px 1fr; } }

/* ── IMAGE BLOCKS ── */
.img-portrait {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-warm);
}
.img-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.img-landscape {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-warm);
}
.img-landscape img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 32px;
}
@media (min-width: 560px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--script);
  font-style: italic;
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 32px;
}
@media (min-width: 560px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card {
  background: var(--white);
  padding: 28px 24px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
.service-card:hover { border-left-color: var(--eucalyptus); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.service-card p { font-size: 0.82rem; }

/* ── TESTIMONIALS ── */
.testimonial-section { background: var(--jade); }
.testimonial-section h2 { color: var(--white); }
.testimonial-section .section-label { color: var(--blush); }
.testimonial-section .divider { background: var(--blush); }
.t-carousel {
  position: relative;
  max-width: 900px;
  margin: 36px auto 0;
}
.t-viewport { overflow: hidden; }
.t-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.t-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 4px;
}
/* Featured slide: photo beside quote */
.t-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border-top: 2px solid var(--blush);
}
.t-photo { overflow: hidden; }
.t-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t-content { padding: 28px; }
.t-content-solo {
  background: rgba(255,255,255,0.06);
  border-top: 2px solid var(--blush);
  max-width: 620px;
  margin: 0 auto;
  min-height: 100%;
}
.t-carousel .stars { color: var(--blush); letter-spacing: 3px; font-size: 0.75rem; margin-bottom: 14px; display: block; }
.t-carousel blockquote {
  font-family: var(--script);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin-bottom: 16px;
}
.t-carousel cite {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blush);
  font-style: normal;
}
.t-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.t-arrow:hover { background: rgba(255,255,255,0.25); }
.t-prev { left: -6px; }
.t-next { right: -6px; }
.t-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.t-dot.active { background: var(--blush); }
@media (min-width: 720px) {
  .t-featured { grid-template-columns: 1fr 1fr; }
  .t-content { display: flex; flex-direction: column; justify-content: center; }
  .t-prev { left: -18px; }
  .t-next { right: -18px; }
}

/* ── Q&A ACCORDION ── */
.qa-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.qa-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  gap: 12px;
}
.qa-q-text {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--jade);
  font-weight: 500;
  flex: 1;
  line-height: 1.5;
}
.qa-toggle {
  width: 24px; height: 24px; min-width: 24px;
  border-radius: 50%;
  border: 1px solid var(--eucalyptus);
  display: flex; align-items: center; justify-content: center;
  color: var(--eucalyptus);
  font-size: 1.1rem;
  transition: all 0.3s;
  margin-top: 2px;
}
.qa-item.open .qa-toggle {
  background: var(--eucalyptus);
  color: var(--white);
  transform: rotate(45deg);
}
.qa-answer { display: none; padding-top: 14px; }
.qa-item.open .qa-answer { display: block; }
.qa-answer p {
  font-family: var(--script);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.75;
}

/* ── AWARDS / FEATURED ── */
.awards-section { background: var(--bg-cream); text-align: center; }
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 20px;
  margin-top: 32px;
}
.award-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  min-width: 104px;
  text-align: center;
}
.award-badge .yr {
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--eucalyptus);
  display: block;
}
.award-badge .aw {
  font-family: var(--script);
  font-size: 0.92rem;
  color: var(--jade);
  display: block;
  margin-top: 3px;
}
.pub-logo {
  font-family: var(--script);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-mid);
  padding: 10px 16px;
  border: 1px solid var(--border);
  background: var(--white);
}

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 7px;
  font-weight: 500;
}
.form-group label .req { color: var(--eucalyptus); margin-left: 2px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--bg-cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--eucalyptus); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-section-title {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--eucalyptus);
  text-align: center;
  letter-spacing: 2px;
  margin: 32px 0 20px;
}
.form-note {
  text-align: center;
  font-family: var(--script);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin: 12px 0 20px;
  line-height: 1.65;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--peacock);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url('../logos/monogram-cotton.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 320px;
  opacity: 0.04;
}
.cta-band h2 { color: var(--white); position: relative; }
.cta-band p { color: rgba(255,255,255,0.72); margin-bottom: 28px; position: relative; }

/* ── EXTENSION RENTALS CALLOUT ── */
.ext-callout {
  background: var(--blush);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}
.ext-callout::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url('../logos/monogram-cotton.svg');
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: 280px;
  opacity: 0.12;
}
.ext-callout .section-inner { position: relative; }
.ext-callout h2 { color: var(--peacock); }
.ext-callout .section-label { color: var(--jade); }
.ext-callout p { color: var(--jade); }
.ext-callout .divider { background: var(--jade); }
.ext-exclusive {
  display: inline-block;
  background: var(--peacock);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.ext-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 560px) { .ext-benefits { grid-template-columns: 1fr 1fr; } }
.ext-benefit {
  background: rgba(255,255,255,0.5);
  padding: 20px;
  border-left: 3px solid var(--jade);
}
.ext-benefit h4 {
  font-family: var(--script);
  font-size: 1.1rem;
  color: var(--peacock);
  margin-bottom: 6px;
}
.ext-benefit p { font-size: 0.82rem; color: var(--jade); margin: 0; }

/* ── FOOTER ── */
#site-footer {
  background: var(--jade);
  padding: 52px 24px 20px;
}
.footer-inner { max-width: 1040px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 560px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; } }
.footer-logo-img {
  height: 46px; width: auto;
  opacity: 1;
  margin-bottom: 14px;
  display: block;
}
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  font-size: 0.78rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blush); }
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--blush); color: var(--blush); }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1.5px;
  line-height: 2;
}
.footer-bottom p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}
.back-top {
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-decoration: none;
  margin-top: 8px;
}
.back-top:hover { color: var(--blush); }

/* ── UTILITY ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.bg-cream  { background: var(--bg-cream); }
.bg-warm   { background: var(--bg-warm); }
.bg-white  { background: var(--white); }
.bg-jade   { background: var(--jade); }
.bg-peacock{ background: var(--peacock); }

/* ── Portfolio scroll-fade (focused band) ── */
.gallery-fade .gallery-item {
  opacity: 1;
  will-change: opacity, transform;
  transition: opacity 0.15s linear, transform 0.15s linear;
}
.gallery-fade.is-active .gallery-item {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-fade .gallery-item,
  .gallery-fade.is-active .gallery-item { opacity: 1 !important; transform: none !important; transition: none; }
}
