@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Karla:wght@300;400;500&display=swap');

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

:root {
  --cream: #FAF8F5;
  --warm-white: #F5F0EB;
  --sand: #E8DDD3;
  --taupe: #B8A99A;
  --dark: #2C2825;
  --dark-soft: #4A4440;
  --accent: #C4A882;
  --accent-light: #D4C4AE;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Karla', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 190, 178, 0.2);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(44, 40, 37, 0.06);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--dark);
}

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.35em;
  color: var(--taupe);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: -2px;
}

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 0.2rem; }

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-soft);
  padding: 0.5rem 0.9rem;
  position: relative;
  font-weight: 400;
  transition: color 0.3s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--accent);
  transition: left 0.3s, right 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after { left: 20%; right: 20%; }

.main-nav a:hover,
.main-nav a.active { color: var(--dark); }

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

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 190, 178, 0.2);
  padding: 0.8rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  box-shadow: 0 8px 32px rgba(44, 40, 37, 0.08);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 0.4rem 1.5rem;
  font-size: 0.68rem;
  white-space: nowrap;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
  background: rgba(196, 168, 130, 0.08);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
  transition: transform 8s ease-out;
}

.hero:hover .hero-bg { transform: scale(1.03); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,40,37,0.1) 0%, rgba(44,40,37,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  animation: fadeUp 1.2s ease-out;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.hero-content p {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.9;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.5s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 2;
  fill: none;
}

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

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

/* ========== PAGE HERO (shorter) ========== */
.page-hero {
  height: 55vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 82px;
}

.page-hero .hero-bg,
.page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .hero-bg { background-size: cover; background-position: center; filter: brightness(0.7); }
.page-hero .hero-overlay { background: linear-gradient(180deg, rgba(44,40,37,0.15) 0%, rgba(44,40,37,0.4) 100%); }

.page-hero h1 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  animation: fadeUp 1s ease-out;
}

/* ========== SECTIONS ========== */
.section {
  padding: 6rem 2.5rem;
}

.section-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section-wide {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 3rem;
}

.section-divider {
  width: 50px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2rem;
}

/* ========== GALLERY GRID ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 40, 37, 0.3);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
}

/* Masonry-style variation */
.gallery-grid-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-grid-masonry .gallery-item {
  aspect-ratio: unset;
  break-inside: avoid;
  margin-bottom: 1rem;
}

/* ========== PORTFOLIO CATEGORIES ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.portfolio-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44,40,37,0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: background 0.4s;
}

.portfolio-card:hover .card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(44,40,37,0.7) 100%);
}

.portfolio-card .card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
}

.portfolio-card .card-count {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}

/* ========== ABOUT SECTION ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--dark-soft);
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--dark);
  color: var(--dark);
  transition: background 0.3s, color 0.3s;
  margin-top: 1rem;
  font-weight: 400;
}

.btn:hover {
  background: var(--dark);
  color: var(--cream);
}

.btn-light {
  border-color: #fff;
  color: #fff;
}

.btn-light:hover {
  background: #fff;
  color: var(--dark);
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--warm-white);
  padding: 2.5rem;
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent-light);
  position: absolute;
  top: 0.8rem;
  left: 1.5rem;
  line-height: 1;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--dark-soft);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.review-author {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.review-stars {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
}

/* ========== INFO / PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--warm-white);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 40, 37, 0.08);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--dark-soft);
  border-bottom: 1px solid rgba(200, 190, 178, 0.2);
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--dark-soft);
  margin-bottom: 0.5rem;
}

.contact-info .info-block { margin-bottom: 2.5rem; }

.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-soft);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
  transition: border-color 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-form button {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--cream);
  transition: background 0.3s, color 0.3s;
  font-weight: 400;
}

.contact-form button:hover {
  background: transparent;
  color: var(--dark);
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card { overflow: hidden; }

.blog-card .blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.blog-card .blog-body {
  padding: 1.5rem 0;
}

.blog-card .blog-date {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--dark-soft);
}

/* ========== PRESS LOGOS ========== */
.press-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.press-item {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.05em;
  font-style: italic;
  transition: color 0.3s;
}

.press-item:hover { color: var(--dark); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}

.footer-social a:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 18, 16, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  animation: fadeUp 0.3s ease-out;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-close svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 1.5;
  fill: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
}

.lightbox-nav svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 1.5;
  fill: none;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .main-nav { 
    display: none;
    position: fixed;
    top: 82px;
    left: 0; right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
  }
  
  .main-nav.open { display: flex; }
  
  .menu-toggle { display: block; }
  
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    min-width: 0;
    backdrop-filter: none;
  }
  
  .dropdown-menu a { text-align: center; }
  
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  
  .portfolio-grid { grid-template-columns: 1fr; }
  
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  
  .gallery-grid-masonry { columns: 2; }
  
  .section { padding: 4rem 1.5rem; }
  
  .header-inner { padding: 1rem 1.5rem; }
}

@media (max-width: 550px) {
  .gallery-grid-masonry { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ========== FADE-IN ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PULL QUOTE ========== */
.pull-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark-soft);
}

.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--taupe);
}
