/* ═══════════════════════════════════════════════
   TAILORED MEMORIES — styles.css
   One stylesheet shared across all four pages
═══════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --ink:        #1a1a1a;
  --charcoal:   #2c2c2c;
  --slate:      #3d3d3d;
  --warm-grey:  #6b6560;
  --cream:      #f5f0ea;
  --off-white:  #faf8f5;
  --rose:       #c7607a;
  --terracotta: #b85c38;
  --gold:       #c9a84c;
  --gold-light: #e0c97a;
  --border:     rgba(26,26,26,0.12);
  --nav-h:      80px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Image protection ─── */
img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.no-dl { position: relative; overflow: hidden; }
.no-dl::after { content: ''; position: absolute; inset: 0; z-index: 1; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  font-weight: 500;
}
p { line-height: 1.75; color: var(--warm-grey); font-weight: 300; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-dark    { background: var(--ink);  color: var(--cream); }
.btn-dark:hover  { background: var(--charcoal); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-rose    { background: var(--rose); color: #fff; border: 1.5px solid var(--rose); }
.btn-rose:hover  { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); }

/* ─── Labels & dividers ─── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}
.divider { width: 48px; height: 2px; background: var(--rose); margin: 20px 0 32px; }

/* ─── Scroll fade-in ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }


/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; height: 100%; }
.nav-logo-img {
  height: 78px; width: auto;
  display: block;
  pointer-events: none; user-select: none; -webkit-user-drag: none;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none; font-weight: 500;
  position: relative; padding-bottom: 4px; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--rose); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: 1px solid var(--ink); border-radius: 2px; z-index: 200;  /* border-radius was adjusted to 2px to prevent weird stretching when open class is toggled */
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--off-white);
  padding: 32px 20px;
  border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 0; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--rose); }
.mobile-menu a:hover { color: var(--rose); }


/* ══════════════════════════════════════
   SHARED PAGE HERO  (services + portfolio)
══════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,96,122,0.15) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(48px,6vw,88px); color: #fff; font-weight: 300; }
.page-hero h1 em { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 600px; margin-top: 20px; font-size: 17px; }

.breadcrumb {
  display: flex; gap: 8px; align-items: center; margin-bottom: 24px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--rose); }


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: #111; padding: 60px 0 32px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 14px; margin-top: 16px; max-width: 300px; }
.footer-logo { font-family: 'Caveat', cursive; font-size: 22px; color: var(--gold-light); }
.footer-col h4 {
  font-family: 'DM Sans'; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.40); margin: 0; }


/* ══════════════════════════════════════
   HOME — HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 0;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 20px;
}
.hero-title { font-size: clamp(48px,5vw,80px); font-weight: 300; line-height: 1.05; color: var(--ink); margin-bottom: 8px; }
.hero-title em { font-style: italic; color: var(--rose); }
.hero-script { font-family: 'Caveat', cursive; font-size: clamp(32px,3.5vw,52px); color: var(--gold); margin-bottom: 32px; line-height: 1.2; }
.hero-desc { max-width: 460px; font-size: 16px; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(199,96,122,0.12) 0%, transparent 50%); z-index: 1;
}
.hero-badge {
  position: absolute; bottom: 48px; left: -24px;
  background: var(--cream); padding: 24px 32px; z-index: 2;
  box-shadow: 8px 8px 0 var(--rose);
}
.hero-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--ink); line-height: 1; }
.hero-badge .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-grey); margin-top: 4px; }


/* ── Stats strip ── */
.stats-strip { background: var(--ink); padding: 28px 0; }
.stats-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--gold-light); display: block; }
.stat-lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }


/* ── Services preview ── */
.services-preview { padding: 120px 0; background: var(--cream); }
.services-preview .intro { max-width: 600px; margin-bottom: 72px; }
.services-preview h2 { font-size: clamp(36px,4vw,56px); margin-bottom: 20px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.service-card { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.service-card .sc-inner { width: 100%; height: 100%; display: block; }
.service-card .sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.service-card:hover .sc-img { transform: scale(1.05); }
.sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.2) 50%, transparent 100%);
  transition: background 0.4s;
}
.service-card:hover .sc-overlay {
  background: linear-gradient(to top, rgba(199,96,122,0.85) 0%, rgba(26,26,26,0.3) 60%, transparent 100%);
}
.sc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; z-index: 2; }
.sc-number { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: rgba(255,255,255,0.12); line-height: 1; display: block; }
.sc-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: #fff; font-weight: 400; margin-bottom: 8px; }
.sc-sub { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.sc-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); opacity: 0; transform: translateY(10px); transition: all 0.3s; }
.service-card:hover .sc-arrow { opacity: 1; transform: translateY(0); }


/* ── Why Us ── */
.why-us { padding: 120px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 { font-size: clamp(36px,4vw,56px); margin-bottom: 24px; }
.why-left p { margin-bottom: 32px; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-card {
  background: var(--cream); padding: 32px 28px;
  border-left: 3px solid var(--rose);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.wc-icon { margin-bottom: 14px; }
.wc-icon svg { width: 26px; height: 26px; stroke: var(--rose); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: block; }
.why-card h4 { font-family: 'DM Sans'; font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.why-card p { font-size: 14px; }


/* ── Testimonials ── */
.testi-section { background: var(--ink); padding: 80px 0; }
.testi-section .section-label { color: var(--gold-light); }
.testi-slide { display: none; animation: fadeUp 0.5s ease; }
.testi-slide.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,3vw,36px); font-style: italic; color: #fff; font-weight: 300; line-height: 1.5; max-width: 800px; margin-bottom: 32px; }
.testi-author { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }
.testi-dots { display: flex; gap: 8px; margin-top: 40px; }
.testi-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.testi-dot.active { background: var(--gold-light); transform: scale(1.4); }


/* ── CTA Banner ── */
.cta-banner { padding: 100px 0; background: var(--cream); text-align: center; }
.cta-banner h2 { font-size: clamp(36px,5vw,64px); margin-bottom: 16px; }
.cta-banner p { max-width: 520px; margin: 0 auto 40px; font-size: 17px; }


/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.svc-section { padding: 100px 0; }
.svc-section:nth-child(even) { background: var(--cream); }

.svc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-inner.flip { direction: rtl; }
.svc-inner.flip > * { direction: ltr; }

.svc-img-wrap { position: relative; }
.svc-img-wrap::after { content: ''; position: absolute; inset: 0; } /* drag block */
.svc-img-wrap .art-block { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.svc-accent { position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; background: var(--rose); z-index: -1; }
.svc-accent.gold { background: var(--gold); right: auto; left: -20px; }

.svc-text h2 { font-size: clamp(32px,3.5vw,48px); margin-bottom: 16px; }
.svc-text p { margin-bottom: 20px; font-size: 15px; }
.svc-list { list-style: none; margin: 24px 0 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.svc-list li {
  font-size: 14px; color: var(--charcoal); padding: 10px 14px;
  background: var(--off-white); border-left: 2px solid var(--gold);
  display: flex; align-items: center; gap: 8px;
}
.svc-list li svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.svc-section:nth-child(even) .svc-list li { background: #fff; }

/* Digital marketing add-on */
.dm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.dm-card { background: #fff; padding: 28px 24px; }
.dm-card:nth-child(1) { border-top: 3px solid var(--gold); }
.dm-card:nth-child(2) { border-top: 3px solid var(--rose); }
.dm-card:nth-child(3) { border-top: 3px solid var(--terracotta); }
.dm-icon { margin-bottom: 14px; }
.dm-icon svg { width: 28px; height: 28px; stroke: var(--rose); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: block; }
.dm-card:nth-child(1) .dm-icon svg { stroke: var(--gold); }
.dm-card:nth-child(3) .dm-icon svg { stroke: var(--terracotta); }
.dm-card h4 { font-family: 'DM Sans'; font-size: 16px; margin-bottom: 8px; color: var(--ink); }
.dm-card p { font-size: 13px; }

/* Process */
.process-section { padding: 100px 0; background: var(--ink); }
.process-section .section-label { color: var(--gold-light); }
.process-section h2 { font-size: clamp(36px,4vw,56px); color: #fff; margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.step { background: rgba(255,255,255,0.04); padding: 40px 32px; border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s; }
.step:hover { border-top-color: var(--rose); background: rgba(255,255,255,0.07); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: rgba(255,255,255,0.06); line-height: 1; display: block; }
.step h4 { font-family: 'DM Sans'; font-size: 16px; color: #fff; font-weight: 500; margin: 12px 0 10px; }
.step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }


/* ══════════════════════════════════════
   PORTFOLIO PAGE
══════════════════════════════════════ */
/* .page-hero is shared — same dark ink background as services */

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin: 48px 0; }
.filter-btn {
  padding: 10px 24px; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; font-family: 'DM Sans', sans-serif; font-weight: 500;
  cursor: pointer; background: transparent; border: 1.5px solid var(--border);
  color: var(--warm-grey); transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; padding-bottom: 100px; }
.port-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: default; }
.port-item--video:hover .port-art { transform: scale(1.05); }
.port-item:hover .port-art { transform: scale(1.07); }
.port-art { width: 100%; height: 100%; transition: transform 0.6s ease; display: flex; align-items: center; justify-content: center; }
.port-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0); transition: background 0.4s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
}
.port-item:hover .port-overlay { background: rgba(26,26,26,0.78); }
.port-info { transform: translateY(20px); opacity: 0; transition: all 0.35s; }
.port-item:hover .port-info { transform: none; opacity: 1; }
.port-cat { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 6px; }
.port-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #fff; }

.port-cta { padding: 80px 0; background: var(--ink); text-align: center; }
.port-cta .section-label { color: var(--gold-light); display: block; text-align: center; }
.port-cta h2 { font-size: clamp(32px,4vw,52px); color: #fff; margin-bottom: 20px; }
.port-cta p { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 36px; }


/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-wrap {
  padding-top: var(--nav-h); min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
}
.contact-left {
  background: var(--ink); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-left::before {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,96,122,0.2) 0%, transparent 70%);
}
.contact-left .inner { position: relative; z-index: 1; }
.contact-left .breadcrumb { margin-bottom: 32px; }
.contact-left .breadcrumb a { color: rgba(255,255,255,0.35); }
.contact-left .breadcrumb a:hover { color: #fff; }
.contact-left h1 { font-size: clamp(36px,4vw,60px); color: #fff; font-weight: 300; margin-bottom: 24px; }
.contact-left h1 em { color: var(--gold-light); }
.contact-left > .inner > p { color: rgba(255,255,255,0.55); max-width: 400px; margin-bottom: 48px; font-size: 15px; }

.cd-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.cd-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.07);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cd-icon svg { width: 20px; height: 20px; stroke: var(--gold-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cd-info h4 { font-family: 'DM Sans'; color: var(--gold-light); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.cd-info p { color: rgba(255,255,255,0.65); font-size: 15px; margin: 0; line-height: 1.5; }

.social-row { display: flex; gap: 12px; margin-top: 48px; }
.social-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; text-decoration: none;
}
.social-btn svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.65); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.social-btn:hover { background: var(--rose); border-color: var(--rose); }
.social-btn:hover svg { stroke: #fff; }

.contact-right {
  padding: 80px 60px; background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-right h2 { font-size: clamp(28px,3vw,40px); margin-bottom: 8px; }
.contact-right > p { margin-bottom: 40px; }

.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 8px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px; background: transparent;
  border: 1.5px solid var(--border); font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--ink); outline: none; transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12px; color: var(--warm-grey); margin-top: -12px; margin-bottom: 24px; }
.form-success { display: none; background: rgba(199,96,122,0.08); border-left: 3px solid var(--rose); padding: 16px 20px; margin-bottom: 20px; font-size: 14px; color: var(--charcoal); }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { gap: 48px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 20px 40px; }
  .hero-right { height: 360px; }
  .hero-badge { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .svc-inner, .svc-inner.flip { grid-template-columns: 1fr; direction: ltr; }
  .svc-inner.flip > * { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .dm-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 60px 24px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .services-grid, .port-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-cards { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .stat-sep { display: none; }
  .form-row2 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .port-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   PORTFOLIO — PLAY BUTTON & VIDEO LINKS
══════════════════════════════════════ */

/* Play button positioned in centre of video cards */
.port-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.88;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Scale up play button on hover */
.port-item--video:hover .port-play-btn {
  transform: translate(-50%, -50%) scale(1.18);
  opacity: 1;
}

/* "Watch on YouTube/TikTok" hint text inside overlay */
.port-link-hint {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light, #d4af6a);
  margin: 6px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

/* Ensure <a> port items behave like <div> port items */
a.port-item {
  display: block;
  cursor: pointer;
}
