/*
Theme Name: Aurea People
Theme URI:
Description: Marketing talent consultancy theme for Aurea People
Version: 1.0.0
Author: Aurea People
Text Domain: aurea-theme
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

/* =====================================================
   TABLE OF CONTENTS
   1. Reset & Base
   2. Variables
   3. Typography
   4. Navigation
   5. Hero
   6. Logos Band
   7. Services
   8. Why Section
   9. Testimonials
   10. Contact
   11. Footer
   12. Animations
   13. WordPress Core
   14. Comments
   15. Widgets
   16. Responsive
===================================================== */

/* 1. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* 2. Variables */
:root {
  --coral: #FF6F61;
  --coral-dark: #e05548;
  --coral-light: #fff0ee;
  --black: #0e0e0e;
  --gray-900: #1a1a1a;
  --gray-600: #5a5a5a;
  --gray-300: #d4d4d4;
  --gray-100: #f5f5f3;
  --white: #ffffff;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}

p { line-height: 1.7; }

a { color: var(--coral); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral-dark); }

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

/* 4. Navigation — NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.nav-logo svg { height: 50px; width: auto; }

.nav-logo-text {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: none;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--coral-dark) !important; }

/* 5. Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-left {
  padding: 10% 6% 8% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 32px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--coral);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 28px;
  font-weight: 400;
}

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

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gray-900); transform: translateY(-1px); color: var(--white); }

.btn-secondary {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--black); }

.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(4px); }

.hero-right {
  position: relative;
  overflow: hidden;
}

/* Hero photo — fills the right column */
.hero-right-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-right-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero-right-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0.12) 0%,
    rgba(14,14,14,0.52) 100%
  );
  z-index: 1;
}

/* Stat cards float above the photo */
.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 48px 0;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.stat-box {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(8px);
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.stat-box:nth-child(1) { animation-delay: 0.3s; }
.stat-box:nth-child(2) { animation-delay: 0.45s; }

.stat-box-coral {
  background: var(--coral);
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.6s forwards;
}

.stat-number {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 6px;
}

.stat-box-coral .stat-number { color: var(--white); }

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.stat-box-coral .stat-label { color: rgba(255,255,255,0.75); }

.hero-quote {
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(8px);
  padding: 28px 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.75s forwards;
}

.hero-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
}

.hero-quote cite {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

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

/* 6. Logos Band */
.logos-band {
  padding: 32px 10%;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  gap: 0;
}

.logos-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
  white-space: nowrap;
  margin-right: 48px;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  flex: 1;
  overflow: hidden;
}

.logo-item {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gray-300);
  white-space: nowrap;
  font-weight: 400;
}

/* 7. Services */
.services {
  padding: 120px 10%;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: end;
}

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--coral);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--black);
}

.section-title em { font-style: italic; color: var(--coral); }

.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.75;
  align-self: end;
  padding-bottom: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

/* Card header image */
.service-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.service-card-body {
  padding: 40px 40px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.4s ease;
}

.service-card:hover { background: var(--white); }
.service-card:hover::after { width: 100%; }

.service-num {
  font-family: var(--serif);
  font-size: 72px;
  color: var(--gray-300);
  line-height: 1;
  margin-bottom: 32px;
  font-weight: 400;
  transition: color 0.3s;
}

.service-card:hover .service-num { color: var(--coral); }

.service-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  border: 1px solid var(--gray-300);
  padding: 5px 12px;
  border-radius: 1px;
}

/* 8. Why Section */
.why {
  padding: 120px 10%;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-content {}

.why .section-tag { color: var(--coral); }
.why .section-tag::before { background: var(--coral); }

.why-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 56px;
}

.why-heading em { font-style: italic; color: var(--coral); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.why-item {
  padding: 36px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.why-item:hover { background: rgba(255,255,255,0.03); }

.why-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}

.why-item:hover .why-icon { border-color: rgba(255,111,97,0.45); }

.why-item-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-item-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
}

/* Why — right column photo */
.why-photo-col {
  position: relative;
  align-self: stretch;
}

.why-photo-col::before {
  content: '';
  position: absolute;
  top: 0; left: -12px;
  width: 3px;
  height: 60px;
  background: var(--coral);
  z-index: 1;
}

.why-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.why-photo-caption {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
}

/* 9. Testimonials */
.testimonials {
  padding: 120px 10%;
  background: var(--gray-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--white);
  padding: 48px 44px;
  position: relative;
}

.testimonial-card.featured {
  background: var(--coral);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.8;
  color: var(--gray-100);
  margin-bottom: 24px;
  display: block;
  font-weight: 400;
}

.testimonial-card.featured .quote-mark { color: rgba(255,255,255,0.2); }

.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--black);
  line-height: 1.55;
  margin-bottom: 32px;
  font-weight: 400;
}

.testimonial-card.featured .testimonial-text { color: var(--white); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-100);
}

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

/* Fallback initials variant */
.author-avatar--initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  flex-shrink: 0;
}

.testimonial-card.featured .author-avatar--initials {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}

.testimonial-card.featured .author-name { color: var(--white); }

.author-role {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

.testimonial-card.featured .author-role { color: rgba(255,255,255,0.65); }

.testimonials-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-strip {
  background: var(--white);
  padding: 32px 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.strip-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--black);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.strip-num span { color: var(--coral); }

.strip-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.4;
}

/* 10. Contact */
.contact {
  padding: 120px 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Contact photo */
.contact-photo {
  width: 100%;
  height: 260px;
  overflow: hidden;
  margin-top: 28px;
  margin-bottom: 36px;
}

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

.contact-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text p:first-child {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 4px;
}

.contact-detail-text p:last-child {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
}

.contact-form {
  background: var(--gray-100);
  padding: 48px 44px;
}

.form-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 32px;
  line-height: 1.3;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid transparent;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover { background: var(--coral-dark); transform: translateY(-1px); }

.form-legal {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-300);
  margin-top: 14px;
  line-height: 1.5;
  text-align: center;
}

/* 11. Footer */
footer {
  background: var(--black);
  padding: 72px 10% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.6); }

.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-bottom: 0; }
.footer-logo svg { height: 40px; width: auto; }
.footer-logo-text {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: none;
}

/* 12. Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

.hero-left .hero-tag,
.hero-left .hero-title,
.hero-left .hero-subtitle,
.hero-left .hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}

.hero-left .hero-tag { animation-delay: 0.1s; }
.hero-left .hero-title { animation-delay: 0.25s; }
.hero-left .hero-subtitle { animation-delay: 0.4s; }
.hero-left .hero-actions { animation-delay: 0.55s; }

/* 13. WordPress Core */
.site-content {
  padding-top: 0px;
}

.entry-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 5%;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-bottom: 20px;
  margin-top: 40px;
}

.entry-content p { margin-bottom: 20px; }

.entry-content ul,
.entry-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.entry-content li { margin-bottom: 8px; }

.entry-content blockquote {
  border-left: 3px solid var(--coral);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gray-600);
}

.entry-header {
  padding: 80px 5% 48px;
  max-width: 760px;
  margin: 0 auto;
}

.entry-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 20px;
}

.entry-meta {
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  gap: 16px;
  align-items: center;
}

.entry-meta a { color: var(--coral); }

.entry-thumbnail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 48px;
}

.entry-thumbnail img { width: 100%; }

/* Post loop */
.posts-loop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
}

.post-card {
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 48px;
  margin-bottom: 48px;
}

.post-card:last-child { border-bottom: none; }

.post-card-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}

.post-card-title a { color: var(--black); }
.post-card-title a:hover { color: var(--coral); }

.post-card-excerpt {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.post-card-meta {
  font-size: 12px;
  color: var(--gray-300);
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.read-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--coral);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover { color: var(--coral-dark); }

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 48px 5%;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  color: var(--gray-600);
  transition: all 0.2s;
}

.pagination a:hover,
.pagination .current {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

/* Search form */
.search-form {
  display: flex;
  gap: 0;
  max-width: 480px;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--gray-300);
  border-right: none;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  border-radius: 2px 0 0 2px;
}

.search-form button {
  padding: 13px 20px;
  background: var(--coral);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
}

.search-form button:hover { background: var(--coral-dark); }

/* 404 */
.error-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5%;
}

.error-404-number {
  font-family: var(--serif);
  font-size: clamp(80px, 15vw, 180px);
  color: var(--gray-100);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 24px;
}

.error-404-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 16px;
}

.error-404-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-600);
  margin-bottom: 40px;
}

/* 14. Comments */
.comments-area {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5% 80px;
}

.comments-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
}

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

.comment {
  border-top: 1px solid var(--gray-300);
  padding: 28px 0;
}

.comment-author-name {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}

.comment-meta {
  font-size: 12px;
  color: var(--gray-300);
  margin-bottom: 12px;
}

.comment-content { font-size: 15px; line-height: 1.7; }

.comment-reply-link {
  font-size: 12px;
  color: var(--coral);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 12px;
  display: inline-block;
}

.comment-form-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin: 48px 0 28px;
}

/* 15. Widgets */
.widget-area {
  padding: 80px 5%;
  max-width: 320px;
}

.widget {
  margin-bottom: 48px;
}

.widget-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-300);
}

.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.widget ul li a { color: var(--gray-600); }
.widget ul li a:hover { color: var(--coral); }

/* 16. Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 60vw; max-height: 560px; }
  .hero-visual { padding: 40px 5% 0; }
  .hero-stat-row { grid-template-columns: 1fr 1fr; }
  .section-header { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 220px; }
  .why { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-photo-col { min-height: 320px; }
  .why-photo-col::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  nav { padding: 0 5%; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .hero-stat-row { grid-template-columns: 1fr; }
  .service-card-img { height: 160px; }
  .contact-photo { height: 200px; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

/* ── Page Layout ─────────────────────────────────── */
.contact-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ── Left Panel — Visual ─────────────────────────── */
.contact-visual {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
  background: var(--black);
}

.contact-visual-photo {
  position: absolute;
  inset: 0;
}
.contact-visual-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.contact-visual-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14,14,14,0.45) 0%, rgba(14,14,14,0.20) 50%, rgba(14,14,14,0.55) 100%),
    linear-gradient(to right, rgba(14,14,14,0.35) 0%, rgba(14,14,14,0.0) 60%);
}

.contact-visual-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 10% 10% 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-visual-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.contact-visual-tag::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--coral);
}

.contact-visual-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 3.8vw, 62px);
  color: var(--white);
  line-height: 1.1;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  margin-top: 20px;
  margin-bottom: 20px;
}
.contact-visual-headline em {
  font-style: italic;
  color: var(--coral);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.contact-visual-subline {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  max-width: 380px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
}

.contact-process {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-process-step:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-step-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
  min-width: 36px;
  padding-top: 2px;
}
.contact-step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.contact-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
}

/* ── Right Panel — Form ──────────────────────────── */
.contact-form-panel {
  background: var(--white);
  padding: 60px 8% 80px;
  display: flex;
  flex-direction: column;
}

.contact-form-intro { margin-bottom: 40px; }
.contact-form-intro-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-portrait {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-100);
  border: 2px solid var(--coral-light);
}
.contact-form-portrait img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-portrait-initials {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--coral-light); color: var(--coral);
  font-size: 18px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,111,97,0.2);
}

.contact-form-intro-name { font-size: 14px; font-weight: 500; color: var(--black); }
.contact-form-intro-role { font-size: 13px; color: var(--gray-600); font-weight: 300; }
.contact-form-intro-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
}

.contact-form-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-form-title em { font-style: italic; color: var(--coral); }

.contact-form-subtitle {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-ff-wrapper { flex: 1; }

/* ── Trust strip ─────────────────────────────────── */
.contact-trust-strip {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--gray-300);
  margin-top: 36px;
}
.contact-trust-item { display: flex; flex-direction: column; gap: 2px; }
.contact-trust-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--black);
  line-height: 1;
}
.contact-trust-num em { font-style: normal; color: var(--coral); }
.contact-trust-label {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.4;
}

/* ── Contact details ─────────────────────────────── */
.contact-details-row {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
}
.contact-detail-item svg { flex-shrink: 0; }
.contact-detail-item a { color: var(--gray-600); text-decoration: none; transition: color 0.2s; }
.contact-detail-item a:hover { color: var(--coral); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-page-wrapper { grid-template-columns: 1fr; }
  .contact-visual {
    position: relative;
    top: auto;
    height: 60vw;
    min-height: 380px;
    max-height: 520px;
  }
  .contact-form-panel { padding: 48px 6% 64px; }
  .contact-trust-strip { gap: 20px; }
}

@media (max-width: 640px) {
  .contact-visual { height: 80vw; }
  .contact-form-panel { padding: 36px 5% 56px; }
  .contact-details-row { flex-direction: column; gap: 14px; }
  .contact-trust-strip { flex-wrap: wrap; gap: 16px; }
}
