/*@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;500;600&display=swap');*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --gold: #51A361;
  --gold-d: #9A6E35;
  --gold-l: #B8874A;
  --dark: #101010;
  --mid: #4A4A4A;
  --soft: #202020;
  --bg: #F9F6F1;
  --bg2: #FFFFFF;
  --bg3: #F2EDE6;
  --border: rgba(184, 135, 74, 0.2);
  --serif: serif;
  --sans: sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}
/* ── HEADER ── */
a {
  color: #202020;
  text-decoration: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 246, 241, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.logo-main {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--dark);
  letter-spacing: 0.3px;
  font-weight: 500;
}
.logo-main span {
  color: var(--gold);
}
.logo-sub {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: -10px;
  font-weight: 700;
}
nav {
  display: flex;
  gap: 2rem;
}
nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .25s;
}
nav a:hover {
  color: var(--gold);
}
.h-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}
.h-phone:hover {
  color: var(--gold-d);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: .3s;
}
.mob-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 99;
}
.mob-nav.open {
  display: flex;
}
.mob-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
}
/* ── HERO ── */

.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/img/hero.jpg') center/cover no-repeat;
  transform: scale(1.04);
  animation: zoomIn 8s ease forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 28, 28, 0.92) 0%, rgba(28, 28, 28, 0.55) 60%, rgba(28, 28, 28, 0.3) 100%);
}
@keyframes zoomIn {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  text-align: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid #52A055;
  padding: 0.45rem 1.2rem;
  margin-bottom: 1.8rem;
  animation: fadeUp .8s ease both;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  animation: fadeUp .8s .15s ease both;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}
.hero p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  animation: fadeUp .8s .3s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.btn-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeUp 1s 1s ease both;
}
.hero-scroll span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(212, 169, 106, 0.8), transparent);
  margin: 0 auto;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: .4
  }
  50% {
    opacity: 1
  }
}
/* ── COMMONS ── */

section {
  padding: 6rem 2rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.s-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.s-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.s-lead {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.8;
}
.divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* ── ABOUT ── */

#about {
  background: var(--bg2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.stat-box {
  padding: 1.4rem;
  border: 1px solid var(--border);
  background: var(--bg3);
}
.stat-box:hover {
  border-color: rgba(184, 135, 74, 0.5);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
}
.stat-lbl {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--soft);
  margin-top: 0.2rem;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 4px solid var(--bg2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 48%;
  height: 220px;
  object-fit: cover;
  border: 4px solid var(--bg2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.about-chip {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: #fff;
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(184, 135, 74, 0.3);
}
.about-chip strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
}
.about-chip small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* ── SERVICES ── */

#services {
  background: var(--bg3);
}
.services-head {
  margin-bottom: 3.5rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--bg2);
  padding: 2.2rem 1.8rem;
  border: 1px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.svc-card:hover {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}
.svc-ico {
  width: 46px;
  height: 46px;
  background: rgba(184, 135, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.svc-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}
.svc-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.svc-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.75;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1.2rem;
}
.svc-tags span {
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  background: var(--bg3);
  color: var(--soft);
  border: 1px solid var(--border);
}
/* ── GALLERY ── */

#gallery {
  background: var(--bg2);
}
.gallery-head {
  margin-bottom: 3rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
}
.g-item {
  overflow: hidden;
  position: relative;
  background: var(--bg3);
  cursor: pointer;
}
.g-item:first-child {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.g-item:hover img {
  transform: scale(1.06);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(184, 135, 74, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.g-item:hover .g-overlay {
  opacity: 1;
}
.g-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}
/* placeholder tiles for gallery items without real images */

.g-ph {
  width: 100%;
  height: 100%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.g-ph svg {
  width: 36px;
  height: 36px;
  stroke: rgba(184, 135, 74, 0.4);
  fill: none;
  stroke-width: 1.2;
}
.g-ph span {
  font-size: 0.7rem;
  color: rgba(184, 135, 74, 0.5);
  font-weight: 500;
  letter-spacing: 1px;
}
/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity .2s;
  background: none;
  border: none;
}
.lb-close:hover {
  opacity: 1;
}
/* ── PRICING ── */

#pricing {
  background: var(--bg3);
}
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.price-card {
  background: var(--bg2);
  padding: 2.8rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}
.price-big {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--gold);
  margin: 0.8rem 0;
}
.price-big small {
  font-size: 1rem;
  color: var(--soft);
}
.price-list {
  list-style: none;
  margin-top: 1.5rem;
}
.price-list li {
  display: flex;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 300;
}
.price-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 3px;
  flex-shrink: 0;
}
/* ── CONTACT ── */

#contact {
  background: var(--bg2);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.c-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.c-ico {
  width: 38px;
  height: 38px;
  background: rgba(184, 135, 74, 0.08);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}
.c-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.6;
}
.c-text strong {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.c-text a {
  color: inherit;
  text-decoration: none;
}
.c-text a:hover {
  color: var(--gold);
}
.form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.form-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}
.form-sub {
  font-size: 0.8rem;
  color: var(--soft);
  font-weight: 300;
  margin-bottom: 2rem;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.file-lbl {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg2);
  border: 1.5px dashed rgba(184, 135, 74, 0.35);
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: .25s;
}
.file-lbl:hover {
  border-color: var(--gold);
  background: rgba(184, 135, 74, 0.03);
}
.file-lbl svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}
.file-lbl span {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--soft);
}
.file-lbl span.picked {
  color: var(--gold);
}
#photoInput {
  display: none;
}
.f-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 1rem;
  cursor: pointer;
  transition: .25s;
  margin-top: 1.2rem;
}
.f-submit:hover {
  background: var(--gold);
  transform: translateY(-1px);
}
.f-submit:disabled {
  opacity: .55;
  cursor: default;
  transform: none;
}
.f-msg {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  font-size: 0.83rem;
  display: none;
}
.f-msg.ok {
  background: #F0FFF4;
  border: 1px solid #9AE6B4;
  color: #276749;
  display: block;
}
.f-msg.err {
  background: #FFF5F5;
  border: 1px solid #FEB2B2;
  color: #9B2C2C;
  display: block;
}
/* ── FOOTER ── */

footer {
  background: rgba(249, 246, 241, 0.96);
  padding: 2rem 2rem;
}
.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #202020;
}
.foot-logo span {
  color: var(--gold);
}
.foot-copy {
  font-size: 0.72rem;
  color: #202020;
}
.foot-links {
  display: flex;
  gap: 1.5rem;
}
.foot-links a {
  font-size: 0.72rem;
  color: #202020;
  text-decoration: none;
}
.foot-links a:hover {
  color: var(--gold-l);
}
/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .header-inner {
    padding: 0 15px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-accent {
    left: 0;
    bottom: -1.5rem;
  }
  .about-chip {
    right: 0.5rem;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pricing-wrap {
    grid-template-columns: 1fr;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .g-item:first-child {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
  nav, .h-phone {
    display: none;
  }
  .burger {
    display: flex;
  }
  section {
    padding: 4rem 1.2rem;
  }
  .f-row {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .form-wrap {
    padding: 1.5rem;
  }
  .foot-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .g-item {
    height: 220px;
  }
  .g-item:first-child {
    grid-row: auto;
    grid-column: auto;
  }
}