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

:root {
  --bg: #f8f6f1;
  --bg-dark: #2a2a2a;
  --bg-mid: #f0ede6;
  --copper: #b87333;
  --copper-light: #d4924b;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e0ddd6;
  --white: #ffffff;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: none; cursor: pointer; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.05em; text-transform: uppercase; transition: var(--transition);
  white-space: nowrap;
}
.btn--copper { background: var(--copper); color: var(--white); padding: 16px 40px; }
.btn--copper:hover { background: var(--copper-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,115,51,0.3); }
.btn--dark { background: var(--bg-dark); color: var(--white); padding: 15px 36px; }
.btn--dark:hover { background: #3a3a3a; }
.btn--outline-light { background: transparent; color: var(--white); padding: 15px 36px; border: 1px solid rgba(255,255,255,0.45); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--full { width: 100%; }

/* SECTION COMMONS */
.section-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; line-height: 1.15; color: var(--text); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--copper); font-weight: 400; }
.section-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.75; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 26px 0; transition: var(--transition); }
.nav.scrolled { background: rgba(248,246,241,0.97); backdrop-filter: blur(12px); padding: 16px 0; border-bottom: 1px solid var(--border); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo span { font-family: 'DM Sans', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--white); transition: color var(--transition); }
.nav.scrolled .nav__logo span { color: var(--text); }
.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav__links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color var(--transition); letter-spacing: 0.02em; }
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav__links a:hover { color: var(--copper); }
.nav__cta { background: var(--copper) !important; color: var(--white) !important; padding: 9px 22px; border-radius: var(--radius); }
.nav.scrolled .nav__cta { color: var(--white) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--transition); }
.nav.scrolled .nav__toggle span { background: var(--text); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(26,26,26,0.78) 0%, rgba(26,26,26,0.45) 60%, transparent 100%); }
.hero__content { position: relative; z-index: 1; max-width: 780px; padding-top: 80px; }
.hero__eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; font-weight: 600; }
.hero__title { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 600; line-height: 0.95; letter-spacing: -0.02em; color: var(--white); margin-bottom: 28px; }
.hero__title em { display: block; font-style: italic; font-weight: 400; color: rgba(255,255,255,0.75); }
.hero__sub { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 44px; line-height: 1.75; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 40px; right: 40px; display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1; }
.hero__scroll span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, rgba(184,115,51,0.8), transparent); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* AWARDS */
.awards { background: var(--bg-dark); padding: 0; }
.awards__inner { display: flex; align-items: stretch; }
.awards__item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 28px 20px; border-right: 1px solid rgba(255,255,255,0.07); }
.awards__item:last-child { border-right: none; }
.awards__item strong { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--copper); line-height: 1; }
.awards__item span { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
.awards__sep { display: none; }

/* ABOUT */
.about { padding: 120px 0; background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about__photo-wrap { position: relative; }
.about__photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about__photo-frame { position: absolute; bottom: -20px; right: -20px; width: calc(100% - 30px); height: calc(100% - 30px); border: 2px solid var(--copper); z-index: -1; }
.about__badge { position: absolute; top: -24px; left: -24px; background: var(--copper); color: var(--white); padding: 18px 20px; display: flex; flex-direction: column; align-items: center; min-width: 90px; }
.about__badge strong { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; opacity: 0.8; }
.about__badge span { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about__lead { font-size: 1.05rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-weight: 400; }
.about__body { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.about__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.about__list-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text); }
.about__check { width: 22px; height: 22px; background: rgba(184,115,51,0.12); color: var(--copper); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }

/* SERVICES */
.services { padding: 120px 0; background: var(--bg); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.service-card { background: var(--white); overflow: hidden; transition: var(--transition); cursor: default; position: relative; }
.service-card__img { aspect-ratio: 3/4; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body { padding: 28px 26px 32px; }
.service-card::before { content: attr(data-index); position: absolute; top: 16px; right: 20px; font-family: 'Playfair Display', serif; font-size: 3rem; color: rgba(184,115,51,0.12); font-weight: 700; line-height: 1; z-index: 1; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.service-card__link { font-size: 0.8rem; font-weight: 600; color: var(--copper); text-decoration: none; letter-spacing: 0.04em; transition: var(--transition); }
.service-card__link:hover { color: var(--copper-light); }

/* PORTFOLIO */
.portfolio { padding: 120px 0; background: var(--white); }
.portfolio__grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: auto; gap: 8px; margin-bottom: 48px; }
.portfolio-card { position: relative; overflow: hidden; background: var(--border); }
.portfolio-card:nth-child(1) { grid-column: span 4; grid-row: span 2; aspect-ratio: unset; min-height: 480px; }
.portfolio-card:nth-child(2) { grid-column: span 2; }
.portfolio-card:nth-child(3) { grid-column: span 2; }
.portfolio-card:nth-child(4) { grid-column: span 3; }
.portfolio-card:nth-child(5) { grid-column: span 3; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.portfolio-card--large img { min-height: 480px; }
.portfolio-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity var(--transition); }
.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }
.portfolio-card:hover img { transform: scale(1.04); }
.portfolio-card__cat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); font-weight: 600; margin-bottom: 6px; }
.portfolio-card__overlay h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 4px; }
.portfolio-card__overlay p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.portfolio__cta { text-align: center; }

/* PROCESS */
.process { padding: 120px 0; background: var(--bg); }
.process__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 60px; }
.process__step { }
.process__num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: rgba(184,115,51,0.15); line-height: 1; margin-bottom: 16px; letter-spacing: -0.03em; }
.process__body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.process__body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* FULLQUOTE */
.fullquote { position: relative; height: 440px; display: flex; align-items: center; overflow: hidden; }
.fullquote__bg { position: absolute; inset: 0; }
.fullquote__bg img { width: 100%; height: 100%; object-fit: cover; }
.fullquote__overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.78); }
.fullquote__content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; padding: 0 24px; }
.fullquote__content blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-style: italic; font-weight: 400; color: var(--white); line-height: 1.5; margin-bottom: 20px; }
.fullquote__content cite { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); font-style: normal; }

/* TESTIMONIALS */
.testimonials { padding: 120px 0; background: var(--white); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.testi-card { background: var(--bg); padding: 40px 36px; border-bottom: 3px solid transparent; transition: var(--transition); }
.testi-card:hover { border-bottom-color: var(--copper); }
.testi-card__quote { font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(184,115,51,0.2); line-height: 0.8; margin-bottom: 16px; }
.testi-card__text { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: 14px; }
.testi-card__author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-card__author strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.testi-card__author span { font-size: 0.78rem; color: var(--text-muted); }

/* CONTACT */
.contact { padding: 120px 0; background: var(--bg-dark); }
.contact .section-tag { color: var(--copper); }
.contact .section-title { color: var(--white); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact__sub { font-size: 0.95rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 48px; }
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail { display: flex; align-items: flex-start; gap: 16px; }
.contact__icon { width: 36px; height: 36px; background: rgba(184,115,51,0.15); color: var(--copper); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact__detail strong { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.contact__detail a, .contact__detail span { font-size: 0.92rem; color: rgba(255,255,255,0.65); text-decoration: none; }
.contact__detail a:hover { color: var(--copper); }
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 14px 18px; font-size: 0.92rem; color: var(--white); font-family: 'DM Sans', sans-serif; transition: var(--transition); outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(184,115,51,0.12); }
.form-group select { color: rgba(255,255,255,0.45); }
.form-group select option { background: #2a2a2a; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__note { font-size: 0.74rem; color: rgba(255,255,255,0.2); text-align: center; }

/* FOOTER */
.footer { background: #1a1a1a; border-top: 1px solid rgba(255,255,255,0.05); padding: 72px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 52px; }
.footer__brand p { font-size: 0.86rem; color: rgba(255,255,255,0.3); line-height: 1.75; margin-bottom: 20px; }
.footer__socials { display: flex; gap: 20px; }
.footer__socials a { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.3); text-decoration: none; transition: color var(--transition); }
.footer__socials a:hover { color: var(--copper); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer__col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color var(--transition); }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.2); }
.footer__bottom a { color: rgba(255,255,255,0.3); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 60px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card:nth-child(1) { grid-column: span 2; grid-row: span 1; min-height: 360px; }
  .portfolio-card:nth-child(2), .portfolio-card:nth-child(3), .portfolio-card:nth-child(4), .portfolio-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; padding: 20px; gap: 4px; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); justify-content: center; align-items: center; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.2rem; padding: 14px; display: block; color: var(--text) !important; }
  .nav__cta { border-radius: var(--radius) !important; }
  .nav__toggle { display: flex; z-index: 1001; }
  .hero__title { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; box-sizing: border-box; text-align: center; white-space: normal; }
  .hero__scroll { display: none; }
  .awards__inner { flex-direction: column; }
  .awards__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .awards__item:last-child { border-bottom: none; }
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__photo-frame { display: none; }
  .about__badge { top: 16px; left: 16px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card__img { aspect-ratio: 16/9; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio-card:nth-child(1) { grid-column: span 1; min-height: 280px; }
  .portfolio-card__overlay { opacity: 1; }
  .process__steps { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 52px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
}
