:root {
  --white: #fff;
  --black: #111;
  --muted: #666;
  --overlay: rgba(0, 0, 0, 0.35);
  --border: #eee;
  --serif: ui-serif, Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--black);
  background: #fff;
  line-height: 1.6;
}

main {
  background: #fff;
  padding: 0;
  margin: 0;
}

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

a:hover {
  opacity: 0.8;
}

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

/* ================== HEADER (sticky) ================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
  overflow: visible;
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  flex-shrink: 0;
  margin-left: 15px;
}

.brand img {
  width: 55px !important;
  height: auto;
  display: block;
  animation: logoSpin 0.8s ease-in-out;
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.nav-links {
  display: flex !important;
  align-items: center;
  gap: 31px !important;
  color: var(--black);
  font-family: var(--serif);
  font-size: 15.95px !important;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-left: auto;
  padding-left: 30px !important;
  padding-right: 20.5px !important;
  padding-top: 28px !important;
}

.nav-links a {
  white-space: nowrap;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  min-width: 180px;
  padding: 8px 0;
  z-index: 9999;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu.open {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  opacity: 1;
}

.nav-dropdown-menu a:hover {
  background: #f5f5f5;
}

.cart-btn {
  margin-left: 5px;
  position: relative;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cart-btn svg {
  width: 22px;
  height: 22px;
}

.cart-btn:hover {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.35);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  display: none;
}

/* ================== HERO ================== */
.hero {
  position: relative;
  height: 90vh;
  max-height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 20px 0;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-home {
  background-image: url('../assets/hero-4k.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(40, 80, 140, 0.28),
    rgba(30, 70, 130, 0.08) 45%,
    rgba(0, 0, 0, 0.12)
  );
  pointer-events: none;
}

/* Water ripple animation - enhanced */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 70% 45% at 50% 70%, rgba(255,255,255,0.04) 0%, transparent 50%);
  animation: waterRipple 10s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes waterRipple {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translate(4%, -2%) scale(1.03);
    opacity: 0.6;
  }
  50% {
    transform: translate(-3%, 4%) scale(0.97);
    opacity: 0.9;
  }
  75% {
    transform: translate(-4%, -2%) scale(1.02);
    opacity: 0.65;
  }
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 5px;
}

.hero-title {
  font-family: var(--serif);
  letter-spacing: 0.08em;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  margin: 0;
  margin-top: -25px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.hero-subtitle {
  margin: -15px 0 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.8vw, 23px);
  font-weight: 300;
  text-shadow: 
    0 0 20px rgba(0, 0, 0, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 4px 8px rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* ================== DONE FOR YOU PAGE ================== */
.dfy-hero {
  text-align: center;
  padding: 4px 20px 12px;
  border-bottom: 1px solid #eee;
}

.dfy-tag {
  font-family: var(--sans);
  font-size: 18px;
  color: #222;
  letter-spacing: 0;
  margin: 0 0 4px;
  position: relative;
  top: -15px;
}

.dfy-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px) !important;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 8px;
  color: var(--black);
  position: relative;
  top: -15px;
}

.dfy-price {
  font-size: 14px;
  color: #444;
  margin: 0;
}

.dfy-price strong {
  color: #2d4a82;
  font-size: 15px;
}

.dfy-intro {
  max-width: 900px;
  margin: 12px auto 8px;
  text-align: center;
  padding: 0 20px;
}

.dfy-statement {
  font-family: var(--serif);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  color: var(--black);
  margin: 0 0 10px;
}

.dfy-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.dfy-options {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 20px;
}

.dfy-options h2 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0 0 0;
  text-align: left;
}

.dfy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.dfy-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 28px 28px 28px 24px;
  position: relative;
  background: #fafafa;
}

.dfy-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: #2d4a82;
  line-height: 1;
  margin-bottom: 10px;
}

.dfy-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--black);
}

.dfy-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.dfy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.dfy-list li {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  counter-increment: dfy-counter;
}

.dfy-list li::before {
  content: counter(dfy-counter) ". ";
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: #2d4a82;
  margin-right: 4px;
}

.dfy-list {
  counter-reset: dfy-counter;
}

.dfy-note {
  text-align: center;
  font-size: 15px;
  color: #888;
  font-style: italic;
  margin-bottom: 24px;
}

.dfy-closing {
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 28px;
}

.dfy-notices {
  text-align: center;
  margin: 0 0 8px;
}

.dfy-notices p {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.6;
}

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

/* Before/After */
.dfy-beforeafter {
  max-width: 900px;
  margin: 12px auto 16px;
  padding: 0 20px;
}

.dfy-ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.dfy-ba-item {
  position: relative;
}

.dfy-ba-label {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 4px;
}

.dfy-ba-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
  transition: opacity 0.2s;
}

.dfy-ba-img:hover {
  opacity: 0.9;
}

/* Hero CTA Button */
.hero-cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 9px 36px;
  background: #2d4a82;
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.05em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
  z-index: 2;
  position: relative;
}

.hero-cta-btn:hover {
  background: #3a5a92;
  opacity: 1;
}

.hero-cta-btn-light {
  background: #4a6aa8;
}

.hero-cta-btn-light:hover {
  background: #5a7ab8;
}

/* Intro text overlayed on lower pool area */
.hero-intro {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 950px;
  width: 85%;
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.22;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  padding: 0 20px;
  pointer-events: none;
}

.hero-intro p {
  margin: 0;
}

/* Floating Testimonial Bubbles */
.testimonial-bubbles {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0 20px;
  max-width: 100%;
  pointer-events: auto;
}

.bubble-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.bubble-btn:hover {
  transform: translateY(-8px) scale(1.15);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bubble-btn:nth-child(1) { animation-delay: 0s; }
.bubble-btn:nth-child(2) { animation-delay: 0.5s; }
.bubble-btn:nth-child(3) { animation-delay: 1s; }
.bubble-btn:nth-child(4) { animation-delay: 1.5s; }
.bubble-btn:nth-child(5) { animation-delay: 2s; }
.bubble-btn:nth-child(6) { animation-delay: 2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Testimonial Modal */
.testimonial-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.testimonial-modal[aria-hidden="false"] {
  display: flex;
}

.testimonial-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.testimonial-popup {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 360px;
  width: 85%;
  padding: 35px 28px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
  animation: popupFadeIn 0.4s ease;
}

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

.testimonial-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.testimonial-close:hover {
  color: #000;
  transform: rotate(90deg);
}

.testimonial-content {
  text-align: center;
}

.testimonial-stars {
  font-size: 22px;
  margin-bottom: 16px;
  color: #ffd700;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.5;
  color: #222;
  margin: 0 0 16px 0;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin: 0 0 6px 0;
}

.testimonial-role {
  font-size: 12px;
  color: #999;
  margin: 0;
}

/* ================== CONTENT ================== */
.content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 25px 22px 100px;
  position: relative;
  z-index: 10;
  background: #fff;
  scroll-margin-top: 100px;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  font-size: clamp(22px, 3.5vw, 34px);
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(17px, 2.5vw, 25px);
  margin: 32px 0 12px;
}

h3 {
  font-size: clamp(16px, 2.2vw, 20px);
  margin: 24px 0 8px;
  font-weight: 700;
}

/* Section divider line */
.section-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 40px 0;
}

/* ================== JOURNAL SECTION ================== */
.journal-section {
  padding-top: 40px;
  padding-bottom: 80px;
  border-top: 1px solid #eee;
}

/* ================== SERVICE CARDS ================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.svc-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.svc-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-12px) scale(1.02);
}

/* Featured card (black background with white outline) */
.svc-card.featured {
  background: #1a1a1a !important;
  color: #fff !important;
  border: 3px solid #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3) !important;
}

.svc-card.featured:hover {
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-12px) scale(1.02);
}

.svc-card.featured h3,
.svc-card.featured .svc-tagline,
.svc-card.featured .svc-desc {
  color: #fff;
}

.svc-card.featured .svc-price {
  color: #fff;
}

.svc-card.featured .svc-value {
  color: #aaa;
}

.svc-badge {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  background: #ff6b6b;
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
}

.svc-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-tagline {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
  color: #333;
}

.svc-desc {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.svc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.svc-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  flex: 1;
}

.svc-price {
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  display: block;
  line-height: 1.3;
}

.svc-card.featured .svc-price {
  color: #fff !important;
}

.svc-value {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  display: block;
}

.svc-card.featured .svc-value {
  color: #bbb;
}

.btn {
  border: 1px solid var(--black);
  background: var(--black);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #333;
}

.svc-card.featured .btn {
  border: 2px solid #fff !important;
  background: #000 !important;
  color: #fff !important;
}

.svc-card.featured .btn:hover {
  background: #222 !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.btn.primary {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* ================== CONTACT ================== */
.contact-info {
  margin-top: 32px;
}

.social-list {
  list-style: none;
  padding: 0;
}

.social-list li {
  margin: 10px 0;
}

.social-list a {
  text-decoration: underline;
  color: var(--black);
}

/* ================== FOOTER ================== */
.site-footer {
  padding: 28px 22px;
  background: #fff;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 16px;
  font-weight: 500;
}

.footer-sns-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.footer-sns-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-sns-icon svg {
  width: 20px;
  height: 20px;
}

.social-links a {
  text-decoration: none;
}

/* ================== SNS ICONS ================== */
.sns-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.sns-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.sns-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.sns-icon svg {
  width: 20px;
  height: 20px;
}

/* Instagram - Gradient */
.sns-icon[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* LinkedIn - Blue */
.sns-icon[aria-label="LinkedIn"] {
  background: #0077b5;
}

/* Pinterest - Red */
.sns-icon[aria-label="Pinterest"] {
  background: #E60023;
}

/* Substack - Orange */
.sns-icon[aria-label="Substack"] {
  background: #FF6719;
}

/* ================== CART MODAL ================== */
.cart-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.cart-modal.open {
  display: block;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.cart-head,
.cart-foot {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head h2 {
  margin: 0;
  font-size: 22px;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #888;
}

.icon-btn:hover {
  color: #000;
}

.cart-body {
  padding: 20px;
  overflow: auto;
  flex: 1;
}

.cart-row {
  padding: 14px 0;
  border-bottom: 1px solid #f2f2f2;
}

.cart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.link {
  background: none;
  border: none;
  color: #444;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.link:hover {
  color: #000;
}

.cart-qty {
  display: flex;
  gap: 10px;
  align-items: center;
}

.qty {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qty:hover {
  background: #f5f5f5;
}

.cart-foot {
  border-top: 1px solid var(--border);
  border-bottom: none;
  margin-top: auto;
}

.fineprint {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

/* ================== SERVICE DETAIL PAGES ================== */
.service-detail {
  max-width: 800px;
  margin: 0 auto;
}

.badge-large {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.price-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.price-box {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.price-box.featured-price {
  background: #1a1a1a;
  border: 2px solid #fff;
}

.price-main {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.featured-price .price-main {
  color: #fff;
}

.price-value {
  font-size: 16px;
  color: #888;
}

.featured-price .price-value {
  color: #aaa;
}

.cta-section {
  margin: 32px 0 16px 0;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

/* Content with image layout */
.content-with-image {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: 24px 0;
}

.image-wrapper {
  width: 55%;
  flex-shrink: 0;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.image-caption {
  text-align: center;
  margin-top: 12px;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.content-text {
  flex: 1;
}

/* Detail page layout: Button+Image left, Requirements right */
.detail-layout {
  display: flex;
  gap: 30px;
  margin: 32px 0;
  align-items: flex-end;
}

.detail-left {
  width: 52%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.detail-right {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.detail-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #333;
  margin-top: 16px;
  display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .detail-layout {
    flex-direction: column;
  }
  
  .detail-left,
  .detail-right {
    width: 100%;
  }

  /* Testimonial bubbles responsive */
  .testimonial-bubbles {
    display: none !important;
  }

  .testimonial-popup {
    padding: 30px 20px 24px;
    width: 90%;
    max-width: 340px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-stars {
    font-size: 20px;
  }
}

/* Requirements box */
.requirements-box {
  background: #f9f9f9;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 20px;
  margin: 0;
}

.requirements-box h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.requirements-box ol {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.requirements-box li {
  margin-bottom: 8px;
}

.centered-image {
  text-align: center;
  margin: 32px 0;
}

.full-width-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .content-with-image {
    flex-direction: column;
  }
  
  .image-wrapper {
    width: 80%;
    margin: 0 auto;
  }
}

.service-detail ul {
  line-height: 1.8;
  margin: 16px 0;
}

.service-detail ul li {
  margin: 8px 0;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 860px) {
  .site-header {
    padding: 6px 10px;
  }

  .nav-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .brand {
    margin: 0 0 0 12px;
    width: auto;
    flex-shrink: 0;
    order: -1;
  }

  .brand img {
    width: 38px !important;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 10px;
    font-size: 12px !important;
    margin-left: auto;
    width: calc(100% - 50px);
    padding-left: 8px;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: auto;
    transform: none;
    min-width: 160px;
    font-size: 12px;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: block !important;
  }

  .brand img {
    width: 52px;
  }

  .hero {
    min-height: 100vh;
    padding: 40px 16px 60px;
  }

  .hero-center {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .content {
    padding: 40px 18px 60px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

/* ================== PHILOSOPHY PAGE ================== */

/* Top 2 Cards (General & Space Design) */
.philosophy-top-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px auto 60px auto;
  max-width: 1100px;
}

.phil-card-large {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(50, 50, 50, 0.9));
  border: 2px solid #444;
  border-radius: 16px;
  padding: 30px 32px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
}

.phil-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #666;
}

.phil-card-large h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px 0;
  font-family: var(--sans);
}

.phil-card-large p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Section Title */
.philosophy-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 60px 0 40px 0;
  font-family: var(--sans);
  color: #1a1a1a;
  position: relative;
  padding-bottom: 20px;
}

.philosophy-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #333, transparent);
}

/* Glassmorphism 3x3 Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px auto 80px auto;
  max-width: 1100px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 24px 24px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.85);
}

.glass-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px 0;
  font-family: var(--sans);
  color: #000;
}

.glass-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .philosophy-top-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phil-card-large {
    padding: 40px 30px;
  }

  .glass-card {
    padding: 32px 24px;
  }

  .philosophy-section-title {
    font-size: 26px;
  }
}

/* Topic List Style */
.topic-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.topic-list li {
  margin: 16px 0;
}

.topic-list li a {
  display: block;
  padding: 16px 20px;
  background: #f9f9f9;
  border-left: 4px solid #333;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.topic-list li a:hover {
  background: #e9e9e9;
  border-left-color: #000;
  padding-left: 28px;
}

/* ================== THE STUDIO PAGE ================== */

/* Studio Banner - What Makes Us Different */
.studio-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  text-align: center;
  padding: 50px 40px;
  border-radius: 16px;
  margin: 40px auto 60px auto;
  max-width: 1000px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.studio-banner h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #fff;
  letter-spacing: 0.5px;
}

.banner-text {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-weight: 400;
  color: #f0f0f0;
}

.banner-subtext {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  opacity: 0.9;
  color: #e0e0e0;
}

/* 5 Energy Cards Grid */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px auto 80px auto;
  max-width: 1200px;
}

.energy-card {
  position: relative;
  border-radius: 20px;
  padding: 0;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-height: 315px;
}

.energy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.energy-card:hover::before {
  left: 100%;
}

.energy-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.energy-content {
  flex: 1;
  padding: 20px 20px 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.energy-thumbnail {
  width: 100%;
  height: 50%;
  overflow: hidden;
  position: relative;
}

.energy-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.energy-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.energy-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.energy-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  opacity: 0.9;
  font-style: italic;
}

.energy-desc {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

/* Individual Energy Colors */
.wood-card {
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: #fff;
}

.fire-card {
  background: linear-gradient(135deg, #d62828, #f77f00);
  color: #fff;
}

.earth-card {
  background: linear-gradient(135deg, #d4a017, #f4c430);
  color: #1a1a1a;
}

.metal-card {
  background: #ffffff;
  color: #1a1a1a;
  border: 3px solid #1a1a1a;
}

.metal-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.water-card {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
}

/* Energy card content/thumbnail layout (same for all cards) */
.energy-content {
  margin-bottom: 10px;
}

.energy-thumbnail {
  height: 50%;
  overflow: hidden;
  border-radius: 6px;
  margin: 0 -20px -12px -20px;
}

.energy-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Project Detail Pages (Studio) */
.project-item {
  display: flex;
  gap: 40px;
  margin: 60px 0;
  align-items: flex-start;
}

.project-image {
  flex: 0 0 48%;
  max-width: 48%;
}

.project-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #333;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-image img:hover {
  transform: scale(1.02);
}

.project-text {
  flex: 1;
}

.project-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #1a1a1a;
}

.project-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 8px 0;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-text p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px 0;
  color: #222;
}

/* Clickable image zoom */
.clickable-image {
  cursor: zoom-in;
}

.clickable-image.zoomed {
  cursor: zoom-out;
}

/* New Before/After Project Layout */
.project-item-new {
  margin: 80px 0;
}

.project-item-new > h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 30px 0;
  color: #1a1a1a;
  text-align: center;
}

.before-after-images {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.ba-image {
  flex: 1;
  text-align: center;
}

.ba-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #333;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ba-image img:hover {
  transform: scale(1.02);
}

.image-label {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-description {
  max-width: 900px;
  margin: 0 auto;
}

.project-description h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 12px 0;
  color: #333;
}

.project-description h4:first-child {
  margin-top: 0;
}

.project-description p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px 0;
  color: #222;
}

/* Responsive for before/after */
@media (max-width: 768px) {
  .before-after-images {
    flex-direction: column;
    gap: 30px;
  }
  
  .image-label {
    font-size: 16px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .studio-banner {
    padding: 40px 24px;
    margin: 30px auto 40px auto;
  }
  
  .studio-banner h2 {
    font-size: 24px;
  }
  
  .banner-text {
    font-size: 16px;
  }
  
  .banner-subtext {
    font-size: 15px;
  }
  
  .studio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .energy-card {
    padding: 36px 28px;
  }
  
  .project-item {
    flex-direction: column;
    gap: 24px;
  }
  
  .project-image {
    flex: none;
    max-width: 100%;
  }
}

