/* ═══════════════════════════════════════════════════════════
   Biagio Sollazzi Photography — Main Stylesheet
   Version: 1.0.0
═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #F5F0EA;
  --ivory:   #FAF7F3;
  --gold:    #B8975A;
  --gold-lt: #D4B47A;
  --dark:    #1C1814;
  --mid:     #4A4440;
  --light:   #8A817A;
  --white:   #FFFFFF;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Montserrat', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── NAVIGATION ─── */
nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  transition: all .5s ease;
}

nav#main-nav.scrolled {
  background: rgba(250,247,243,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 56px;
  box-shadow: 0 1px 0 rgba(0,0,0,.07);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--white);
  transition: color .4s;
}
.nav-logo img { display: inline-block; width: auto; max-height: 48px; }
nav#main-nav.scrolled .nav-logo { color: var(--dark); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links li a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
nav#main-nav.scrolled .nav-links li a { color: var(--mid); }
.nav-links li a:hover { color: var(--gold-lt) !important; }

.nav-cta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.4);
  padding: 10px 24px;
  transition: all .3s;
}
nav#main-nav.scrolled .nav-cta { color: var(--dark); border-color: var(--dark); }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white) !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,24,20,.35) 0%,
    rgba(28,24,20,.20) 40%,
    rgba(28,24,20,.50) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .9s .5s forwards;
}
.hero-title em { font-style: italic; font-weight: 300; }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: .06em;
  color: rgba(255,255,255,.82);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .7s forwards;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 36px auto;
  opacity: 0;
  animation: fadeUp .9s .9s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .9s 1.1s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollLine 2s infinite;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.appear {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.appear.visible { opacity: 1; transform: translateY(0); }

/* ─── SECTION UTILITIES ─── */
section { padding: 120px 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}
.section-title em { font-style: italic; }
.section-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  transition: background .3s, transform .3s;
}
.btn-primary:hover { background: #9E7D42; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,.6);
  color: var(--white);
  transition: all .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); }

.btn-dark {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--dark);
  color: var(--white);
  transition: background .3s;
}
.btn-dark:hover { background: var(--gold); }

.btn-outline {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--dark);
  color: var(--dark);
  transition: all .3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 44px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all .3s;
}
.btn-gold:hover { background: var(--gold); color: var(--white); }

/* ─── TAGLINE STRIP ─── */
.tagline-strip {
  padding: 56px 0;
  background: var(--dark);
  text-align: center;
}
.tagline-strip p {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: .04em;
}
.tagline-strip span { color: var(--gold-lt); }

/* ─── ABOUT ─── */
.about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.about-image-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 55%;
  aspect-ratio: 1;
  background: var(--cream);
  z-index: -1;
  border: 2px solid var(--gold);
  opacity: .6;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}
.stat-item { border-top: 1px solid var(--gold); padding-top: 20px; }
.stat-number {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 6px;
}
.about-links { margin-top: 44px; display: flex; gap: 20px; flex-wrap: wrap; }

/* ─── PORTFOLIO ─── */
.portfolio { background: var(--cream); }
.portfolio-header { text-align: center; margin-bottom: 60px; }
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1px solid transparent;
  color: var(--light);
  cursor: pointer;
  background: none;
  transition: all .3s;
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--gold); color: var(--gold); }

.portfolio-grid {
  columns: 3;
  column-gap: 16px;
}
.portfolio-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity .4s, transform .4s;
}
.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform .7s ease;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-info { color: var(--white); }
.portfolio-item-cat {
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.portfolio-item-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-top: 4px;
}
.portfolio-more { text-align: center; margin-top: 60px; }

/* ─── STORIE ─── */
.storie { background: var(--ivory); }
.storie-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.storie-header a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.storie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.storia-card { display: block; cursor: pointer; }
.storia-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.storia-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.storia-card:hover .storia-card-img img { transform: scale(1.06); }
.storia-card-body { padding: 24px 0 0; }
.storia-card-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.storia-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 8px;
  line-height: 1.3;
}
.storia-card-location {
  font-size: 12px;
  color: var(--light);
  margin-top: 8px;
  letter-spacing: .05em;
}

/* ─── QUOTE ─── */
.quote-section {
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1606800052052-a08af7148866?w=1920&q=80') center/cover no-repeat;
  position: relative;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,24,20,.72);
}
.quote-section .container-narrow {
  position: relative;
  text-align: center;
  color: var(--white);
}
.quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: .5;
  color: var(--gold);
  opacity: .5;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-top: 20px;
}
.quote-author {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 36px;
}

/* ─── LOCATIONS ─── */
.locations { background: var(--cream); }
.locations-header { text-align: center; margin-bottom: 64px; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.location-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.location-card:hover img { transform: scale(1.08); }
.location-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,.75) 0%, transparent 55%);
}
.location-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 24px;
  color: var(--white);
}
.location-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
}
.location-region {
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 4px;
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--ivory); padding: 120px 0; }
.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform .6s ease;
}
.testimonial-item {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.testimonial-image { aspect-ratio: 4/5; overflow: hidden; }
.testimonial-image img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-content { padding-right: 40px; }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 4px; }
.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--dark);
  margin-top: 24px;
}
.testimonial-couple {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-divider { width: 32px; height: 1px; background: var(--gold); }
.testimonial-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}
.testimonial-date {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--light);
  margin-top: 4px;
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
}
.t-nav-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--dark);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.t-nav-btn:hover { background: var(--gold); border-color: var(--gold); }
.t-nav-btn:hover svg { stroke: white; }
.t-nav-btn svg {
  width: 18px; height: 18px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1.5;
}

/* ─── BLOG ─── */
.blog { background: var(--cream); }
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.blog-header a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.blog-card { display: block; }
.blog-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card:first-child .blog-card-img { aspect-ratio: 3/2; }
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px 0 0; }
.blog-card-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-top: 10px;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 10px;
}
.blog-card-date {
  font-size: 10px;
  color: var(--light);
  margin-top: 14px;
  letter-spacing: .08em;
}

/* ─── INSTAGRAM ─── */
.instagram { background: var(--dark); padding: 100px 0; }
.instagram-header { text-align: center; margin-bottom: 52px; color: var(--white); }
.instagram-header .section-label { color: var(--gold-lt); }
.instagram-header .section-title { color: var(--white); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-item { aspect-ratio: 1; overflow: hidden; position: relative; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(184,151,90,0);
  transition: background .3s;
}
.insta-item:hover::after { background: rgba(184,151,90,.3); }
.instagram-follow { text-align: center; margin-top: 48px; }

/* ─── CONTACT CTA ─── */
.contact-cta {
  padding: 160px 0;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80') center/cover no-repeat;
  position: relative;
}
.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,24,20,.68);
}
.contact-cta .container-narrow {
  position: relative;
  text-align: center;
  color: var(--white);
}
.contact-cta .section-label { color: var(--gold-lt); }
.contact-cta .section-title { color: var(--white); margin-top: 12px; }
.contact-cta p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  margin-top: 20px;
}
.contact-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ─── SINGLE POST ─── */
.single-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}
.single-hero-img { width: 100%; height: 100%; object-fit: cover; }
.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,24,20,.5);
}
.single-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-content { padding: 80px 0; }
.entry-content {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
}
.entry-content h2,
.entry-content h3 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--dark);
  margin: 48px 0 20px;
}
.entry-content p { margin-bottom: 24px; }
.entry-content img { margin: 40px 0; border-radius: 0; }
.entry-content a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.entry-tags { margin-top: 40px; font-size: 12px; color: var(--light); }
.entry-tags a { color: var(--gold); margin: 0 4px; }

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--cream);
  font-size: 13px;
  color: var(--mid);
}
.post-navigation a { color: var(--dark); transition: color .3s; }
.post-navigation a:hover { color: var(--gold); }

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--cream);
  padding: 140px 0 60px;
  text-align: center;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  color: var(--dark);
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--light);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--mid); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 8px; }

/* ─── PAGINATION ─── */
.page-numbers {
  display: inline-flex;
  gap: 8px;
  margin-top: 16px;
}
.page-numbers a,
.page-numbers span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream);
  font-size: 12px;
  color: var(--mid);
  transition: all .3s;
}
.page-numbers .current,
.page-numbers a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ─── FOOTER ─── */
footer { background: var(--dark); color: rgba(255,255,255,.6); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-tagline { font-size: 13px; line-height: 1.75; }
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  transition: all .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 11px; letter-spacing: .05em; }
.footer-copy a { color: rgba(255,255,255,.4); transition: color .3s; }
.footer-copy a:hover { color: var(--gold); }
.footer-awards { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.award-badge {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  nav#main-nav { padding: 24px 40px; }
  nav#main-nav.scrolled { padding: 14px 40px; }
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-wrap { max-width: 520px; margin: 0 auto; }
  .portfolio-grid { columns: 2; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  nav#main-nav { padding: 20px 24px; }
  nav#main-nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hero-scroll { display: none; }
  .storie-grid { grid-template-columns: 1fr; }
  .testimonial-item { grid-template-columns: 1fr; }
  .testimonial-image { display: none; }
  .testimonial-content { padding-right: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .portfolio-grid { columns: 1; }
  .locations-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
