/* style.css — Theresa Power Hub | Cinematic Redesign */
/* Color System: 70% Deep Teal | 20% Red Accent | 10% White */

:root {
  --teal:        #005B5B;
  --teal-dark:   #003A3A;
  --teal-deeper: #002828;
  --teal-mid:    #004848;
  --red:         #C41E3A;
  --red-dark:    #8B1529;
  --white:       #FFFFFF;
  --white-dim:   rgba(255,255,255,0.82);
  --white-ghost: rgba(255,255,255,0.45);
  --white-faint: rgba(255,255,255,0.08);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.45s var(--ease-in-out);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--teal-dark);
  color: var(--white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

/* Body lock during preload — prevents flash of un-animated content */
body.is-loading { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p { color: var(--white-dim); font-weight: 300; }

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

/* =============================================
   PRELOADER — CINEMATIC
   ============================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--teal-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}

.preloader.hidden {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
  visibility: hidden;
}

.preloader-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22vw, 38vw, 44vw);
  font-weight: 700;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  animation: ghostPulse 3s ease-in-out infinite;
}

@keyframes ghostPulse {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.preloader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.pl-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.18em;
  display: block;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(38px) skewY(2deg);
  animation: plSlide 0.8s var(--ease-out) forwards;
}

.pl-word.accent {
  color: var(--red);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.pl-word:nth-child(1) { animation-delay: 0.1s; }
.pl-word:nth-child(2) { animation-delay: 0.3s; }
.pl-word:nth-child(3) { animation-delay: 0.5s; }

@keyframes plSlide {
  to { opacity: 1; transform: translateY(0) skewY(0deg); }
}

.pl-bar-wrap {
  width: clamp(120px, 25vw, 200px);
  height: 1.5px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 1.6rem;
  overflow: hidden;
}

.pl-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  animation: plBar 1.9s var(--ease-in-out) 0.7s forwards;
}

@keyframes plBar {
  0%   { width: 0; }
  60%  { width: 70%; }
  100% { width: 100%; }
}

.pl-sub {
  font-size: clamp(0.6rem, 1.8vw, 0.78rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--white-ghost);
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
  margin: 0;
}

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

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--teal-deeper);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.mobile-menu-close:hover { color: var(--red); transform: rotate(90deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  text-align: center;
}

.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.06em;
  overflow: hidden;
  display: block;
}

.mobile-link span {
  display: block;
  transition: transform 0.4s var(--ease-out), color 0.3s ease;
}

.mobile-link:hover span { color: var(--red); transform: translateX(8px); }

.mobile-menu-footer {
  position: absolute;
  bottom: 2.5rem;
  text-align: center;
}

.accent-line {
  width: 44px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 0.9rem;
}

.mobile-menu-footer p {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-ghost);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: var(--transition);
  /* Starts transparent over video */
  background: linear-gradient(to bottom, rgba(0,40,40,0.9) 0%, transparent 100%);
}

.main-header.scrolled {
  background: rgba(0,40,40,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--white-faint);
}

/* Nav animate-in on page load */
.main-header .site-nav {
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
}

.site-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.18em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-12px);
  animation: navItemIn 0.7s var(--ease-out) 2.4s forwards;
}

.brand-accent {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.desktop-nav {
  display: flex;
  gap: 2.6rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateY(-12px);
  animation: navItemIn 0.6s var(--ease-out) forwards;
}

.nav-link:nth-child(1) { animation-delay: 2.5s; }
.nav-link:nth-child(2) { animation-delay: 2.6s; }
.nav-link:nth-child(3) { animation-delay: 2.7s; }
.nav-link:nth-child(4) { animation-delay: 2.8s; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover { color: var(--white) !important; }
.nav-link:hover::after { width: 100%; }

@keyframes navItemIn {
  to { opacity: 1; transform: translateY(0); }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger span {
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* =============================================
   HERO — VIDEO, ~65VH
   ============================================= */
.hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Teal colour-wash — preserves video visibility, adds brand tone */
.hero-teal-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 40, 40, 0.45) 0%,
    rgba(0, 64, 64, 0.35) 50%,
    rgba(0, 40, 40, 0.55) 100%
  );
  mix-blend-mode: multiply;
}

/* Tagline — clipped reveal animation */
.hero-text-block {
  position: absolute;
  bottom: 12%;
  left: 5%;
  z-index: 5;
}

.hero-line-wrap {
  overflow: hidden;
  line-height: 1.1;
}

.hero-line {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transform: translateY(110%);
  opacity: 0;
}

/* Triggered after preloader hides */
.hero-line.rl-1 {
  animation: lineReveal 1s var(--ease-out) 2.3s forwards;
}

.hero-line.rl-2 {
  animation: lineReveal 1s var(--ease-out) 2.55s forwards;
  color: var(--red);
  font-style: italic;
}

@keyframes lineReveal {
  to { transform: translateY(0); opacity: 1; }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
  opacity: 0;
  animation: fadeUp 0.7s ease 3s forwards;
}

.scroll-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-ghost);
  writing-mode: vertical-rl;
}

.scroll-bar {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white-ghost), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  animation: scrollDrop 2s ease-in-out 3.2s infinite;
}

@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 100%; }
}

.hero-bottom-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 35%, transparent 80%);
  z-index: 6;
}

/* =============================================
   PORTRAIT SECTION — FULL WIDTH
   ============================================= */
.portrait-section {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--teal-deeper);
}

.portrait-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.portrait-img {
  width: 100%;
  height: 115%; /* extra height for parallax */
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}

/* Deep teal veil — strong brand color dominance */
.portrait-teal-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,28,28,0.72) 0%, rgba(0,45,45,0.35) 45%, rgba(0,55,55,0.55) 100%),
    linear-gradient(to bottom, rgba(0,28,28,0.25) 0%, transparent 40%, rgba(0,28,28,0.65) 100%);
}

.portrait-caption {
  position: absolute;
  bottom: 8%;
  left: 5%;
  z-index: 5;
}

/* Clip-reveal wrapper */
.p-caption-reveal {
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.p-caption-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.9s var(--ease-out), opacity 0.9s ease;
}

.portrait-section.in-view .p-caption-tag {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.portrait-heading {
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
}

.ph-word {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 0.9s ease;
}

.portrait-section.in-view .ph-word {
  transform: translateY(0);
  opacity: 1;
}

.p-caption-reveal.delay-sm .ph-word {
  transition-delay: 0.2s;
}

.ph-word.italic {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}

/* Vertical side label */
.portrait-vertical-label {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white-ghost);
  z-index: 5;
  transform-origin: center center;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}

.portrait-section.in-view .portrait-vertical-label { opacity: 1; }

/* =============================================
   DATA-REVEAL SYSTEM — Scroll triggered
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 8rem 0;
  background: var(--teal-darker, var(--teal-mid));
  background: #003030;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  left: -8%;
  top: 10%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(196,30,58,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  align-self: start;
  padding-top: 1rem;
}

.about-copy {
  padding: 0 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.about-title {
  font-size: clamp(2.6rem, 4.2vw, 3.9rem);
  color: var(--white);
  margin-bottom: 1.6rem;
}

.about-title em {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.about-rule {
  width: 44px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.8rem;
}

.about-text {
  font-size: 1.02rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 0;
  max-width: 480px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 2.1rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 2.2rem;
  transition: var(--transition);
  border: 1.5px solid var(--red);
}

.cta-button:hover {
  background: transparent;
  color: var(--white);
  gap: 1.4rem;
}

.about-img-col {
  max-width: 320px;
  width: 100%;
}

.about-img-frame {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 35vw, 400px);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-img-frame:hover .about-img { transform: scale(1.05); }

.about-img-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
}

/* =============================================
   QUOTE
   ============================================= */
.quote-section {
  padding: 6rem 0;
  background: var(--teal-dark);
  position: relative;
}

.quote-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 1.5rem;
  display: block;
}

.featured-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.quote-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-rule {
  width: 30px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.quote-author {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
}

/* =============================================
   BLOG / JOURNAL
   ============================================= */
.blog-section {
  padding: 7rem 0;
  background: #003030;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}

.title-accent {
  width: 56px;
  height: 2px;
  background: var(--red);
  margin: 0 auto;
}

.blog-card {
  background: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.4rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.blog-card:hover .card-image img { transform: scale(1.06); }

.card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.blog-card:hover .card-bar { transform: scaleX(1); }

.card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.7rem;
  align-items: center;
}

.card-cat {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-date {
  color: var(--white-ghost);
  font-size: 0.78rem;
}

.card-title {
  font-size: 1.65rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.card-excerpt {
  color: var(--white-dim);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.3rem;
  flex: 1;
}

.card-link {
  color: var(--red);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.card-link:hover { gap: 1rem; color: var(--white); }

.blog-footer {
  text-align: center;
  margin-top: 3.5rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: var(--transition);
}

.view-all-link:hover { background: var(--red); gap: 1.5rem; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  padding: 5.5rem 0;
  background: var(--teal-dark);
}

.nl-wrap {
  padding: 3rem 3.5rem;
  border: 1px solid var(--white-faint);
  border-left: 3px solid var(--red);
  background: rgba(0,0,0,0.12);
}

.nl-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.9rem;
}

.nl-title em { color: var(--red); font-style: italic; }

.nl-text {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}

.nl-group {
  display: flex;
}

.nl-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-right: none;
  color: var(--white);
  padding: 0.95rem 1.4rem;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.nl-input:focus { border-color: var(--red); }
.nl-input::placeholder { color: var(--white-ghost); }

.nl-btn {
  padding: 0.95rem 1.8rem;
  background: var(--red);
  border: 1.5px solid var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.nl-btn:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* =============================================
   INSTAGRAM
   ============================================= */
.instagram-section {
  background: var(--teal-deeper);
  padding-top: 5rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.insta-veil {
  position: absolute;
  inset: 0;
  background: rgba(196,30,58,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insta-item:hover .insta-veil   { opacity: 1; }
.insta-item:hover img            { transform: scale(1.1); }

.insta-veil i { font-size: 2rem; color: var(--white); }

.insta-cta {
  text-align: center;
  padding: 3rem 0;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.insta-link:hover { color: var(--red); }

/* =============================================
   FOOTER
   ============================================= */
.main-footer {
  background: var(--teal-deeper);
}

.footer-top-rule {
  width: 100%;
  height: 4px;
  background: var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 4rem 0 2rem;
  align-items: start;
}

.footer-brand h4 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.footer-brand h4 em {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.footer-tagline {
  color: var(--white-ghost);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.4rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--red); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.4rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-faint);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--white-faint);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.footer-bottom a { color: var(--red); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* =============================================
   BACK TO TOP — PROGRESS RING
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 52px;
  height: 52px;
  background: var(--teal-deeper);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--red); }
.back-to-top:hover i { transform: translateY(-2px); }

.back-to-top i {
  color: var(--white);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btt-svg {
  position: absolute;
  inset: 0;
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}

#progressRing { transition: stroke-dashoffset 0.1s linear; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .about-img-col {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .about-img-frame { height: 280px; }
}

@media (max-width: 991px) {
  .desktop-nav { display: none; }
  .hamburger   { display: flex; }

  .site-brand { font-size: 1.35rem; }

  .hero { height: 58vh; }

  .portrait-section { height: 75vh; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
    align-self: start;
  }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero { height: 52vh; }

  .hero-text-block { left: 4%; bottom: 10%; }

  .hero-scroll-hint { display: none; }

  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-number { display: none; }

  .nl-wrap { padding: 2rem 1.5rem; }

  .nl-group { flex-direction: column; }
  .nl-input { border-right: 1px solid rgba(255,255,255,0.14); border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-social { flex-direction: row; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  .back-to-top { bottom: 1.5rem; right: 1.5rem; }
}

@media (max-width: 576px) {
  .hero { height: 48vh; }
  .portrait-section { height: 65vh; }
  .about-section { padding: 5rem 0; }
  .blog-section  { padding: 5rem 0; }
  .site-nav { padding: 0 1.25rem; }
}
