/* ── Reset & Variables ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a18;
  --ink-soft: #4a4a44;
  --ink-muted: #8a8a82;
  --cream: #f5f2ec;
  --cream-dark: #ede9e0;
  --amber: #c8872a;
  --amber-dark: #a86e1e;
  --amber-pale: #fdf3e3;
  --white: #ffffff;
  --border: #e0dbd0;

  --ff-display: "Barlow Condensed", sans-serif;
  --ff-body: "Lora", Georgia, serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--amber);
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.logo-mark--sm {
  width: 32px;
  height: 32px;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-text span {
  font-family: var(--ff-display);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
}
.nav-cta:hover {
  background: var(--amber-dark) !important;
}

/* ── Hero ── */
.hero {
  min-height: 88vh;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 80% 50%,
      rgba(200, 135, 42, 0.12) 0%,
      transparent 70%
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.013) 40px,
      rgba(255, 255, 255, 0.013) 41px
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 24px;
  max-width: 600px;
  margin-left: auto;
}

.hero-tag {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--amber);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.trust-item span {
  font-family: var(--ff-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-image-panel {
  position: relative;
  z-index: 1;
}

.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2a26 0%, #3d3d35 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background-image: url("background-building.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.img-label {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.9);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

/* ── Services ── */
.services {
  padding: 96px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.18s;
}

.service-card:hover {
  background: var(--amber-pale);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
  transition: background 0.18s;
}

.service-card:hover .service-icon {
  background: rgba(200, 135, 42, 0.15);
}

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── Work ── */
.work {
  padding: 96px 0;
  background: var(--cream);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.work-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.work-card--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.work-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  transition: transform 0.4s ease;
}

.work-card--large .work-img {
  min-height: 460px;
}

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

.work-img--1 {
  background: linear-gradient(135deg, #3d3730 0%, #5a4e40 100%);
}
.work-img--2 {
  background: linear-gradient(135deg, #364030 0%, #4e5a40 100%);
}
.work-img--3 {
  background: linear-gradient(135deg, #303640 0%, #404e5a 100%);
}
.work-img--4 {
  background: linear-gradient(135deg, #403030 0%, #5a4040 100%);
}

.work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
}

.work-info strong {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.work-info span {
  font-family: var(--ff-display);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Reviews ── */
.reviews {
  padding: 96px 0;
  background: var(--ink);
}

.reviews .section-header h2 {
  color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.stars {
  color: var(--amber);
  display: inline-flex;
  gap: 2px;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 22px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.reviewer span {
  font-family: var(--ff-display);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--ff-display);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.google-badge strong {
  color: var(--white);
}

/* ── About ── */
.about {
  padding: 96px 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #d5cfc4 0%, #c4bdb0 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.about-img-placeholder span {
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

.about-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.75;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.badge {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-pale);
  border: 1px solid rgba(200, 135, 42, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ── Contact ── */
.contact {
  padding: 96px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}

.contact-text p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}

.contact-link:hover {
  color: var(--amber);
}

.contact-link svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-family: var(--ff-display);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
}

/* ── Hamburger toggle (mobile) ── */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  line-height: 0;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-inner {
    padding: 56px 24px 48px;
    max-width: 100%;
    margin: 0;
  }
  .hero-image-panel {
    height: 280px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap {
    aspect-ratio: 16/9;
    max-height: 320px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-card--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  section {
    padding: 64px 0;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding: 0 18px;
    height: 60px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 10px;
  }
  .nav-links a {
    display: block;
    padding: 12px 4px;
    font-size: 14px;
  }
  .nav-cta {
    text-align: center;
  }
  .logo-text strong {
    font-size: 14px;
  }
  .logo-text span {
    font-size: 10px;
  }
  .logo-mark {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }
  section {
    padding: 56px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .hero-inner {
    padding: 44px 18px 40px;
  }
  .hero-title {
    font-size: clamp(38px, 11vw, 56px);
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .hero-image-panel {
    height: 220px;
  }
  .hero-tag {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    margin-bottom: 36px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card--large {
    grid-column: auto;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 28px 18px;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 14px 18px;
    padding-top: 20px;
  }
  .trust-divider {
    display: none;
  }
  .trust-item strong {
    font-size: 18px;
  }
  .trust-item span {
    font-size: 10px;
  }
  .service-card {
    padding: 24px 20px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .review-card {
    padding: 22px 20px;
  }
  .about-text h2,
  .contact-text h2 {
    font-size: 28px;
  }
  .contact-form {
    padding: 24px 20px;
  }
  .badges {
    flex-wrap: wrap;
    gap: 8px;
  }
  .google-badge {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px;
  }
}
