:root {
  --orange: #f39200;
  --orange-dark: #d97f00;
  --orange-light: #fdf3e8;
  --brown: #41322c;
  --brown-muted: #5c4a42;
  --text: #2c241c;
  --text-light: #6b5d52;
  --border: #e8e0d8;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(65, 50, 44, 0.08);
  --shadow-lg: 0 12px 40px rgba(65, 50, 44, 0.12);
  --radius: 12px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img,
picture {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0.5rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.logo img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

.phone-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.92rem;
}

.phone-link:hover {
  color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(243, 146, 0, 0.25);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 14px rgba(243, 146, 0, 0.35);
}

.btn-large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.hero-phone {
  font-size: 0.95rem;
  color: var(--text-light);
}

.hero-phone a {
  color: var(--orange);
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 480px);
  min-height: 260px;
  padding: 2.5rem 1.5rem;
}

.logo-showcase--large {
  width: min(100%, 560px);
  min-height: 300px;
  padding: 3rem 2rem;
}

.logo-showcase__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.logo-showcase__glow::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 178, 100, 0.55) 0%,
    rgba(255, 205, 150, 0.3) 38%,
    rgba(255, 225, 190, 0.12) 58%,
    transparent 72%
  );
  box-shadow:
    -70px 90px 80px -10px rgba(255, 195, 130, 0.35),
    90px -50px 70px -15px rgba(243, 146, 0, 0.18);
  filter: blur(2px);
}

.logo-showcase__glow::after {
  content: "";
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  top: 8%;
  right: 2%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(243, 146, 0, 0.28) 0%,
    rgba(255, 190, 120, 0.15) 45%,
    transparent 68%
  );
  filter: blur(1px);
}

.logo-showcase .hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin: 0 auto;
}

.logo-showcase--large .hero-logo {
  width: min(100%, 480px);
}

.hero-logo img {
  width: 100%;
  height: auto;
}

/* Background pattern */
.bg-pattern {
  position: relative;
  overflow: hidden;
}

.bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 42%, rgba(255, 185, 110, 0.22) 0%, transparent 68%),
    radial-gradient(ellipse 40% 35% at 22% 68%, rgba(255, 210, 160, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 55% 85%, rgba(253, 230, 200, 0.35) 0%, transparent 70%),
    radial-gradient(circle at 15% 30%, rgba(243, 146, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(232, 168, 124, 0.1) 0%, transparent 45%);
  pointer-events: none;
}

.bg-pattern > .container {
  position: relative;
}

/* Services */
.services {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--brown);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin: -1.5rem auto 2.5rem;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  max-width: 52ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.service-card li {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

/* Philosophy */
.philosophy {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.philosophy-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.philosophy-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  max-width: 52ch;
}

.philosophy-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.philosophy-visual {
  display: flex;
  justify-content: center;
}

.philosophy-visual .logo-showcase {
  width: min(100%, 400px);
  min-height: 220px;
}

/* FAQ */
.faq {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 4vw, 3rem);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--brown);
  list-style: none;
  min-height: 44px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 1.15rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA */
.cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.site-footer h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1rem;
}

.site-footer ul li {
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--orange);
}

.contact-list li {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact page */
.contact-page {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.contact-intro {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  max-width: 48ch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
  color: var(--brown);
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-item a:hover {
  color: var(--orange);
}

/* Form */
.form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a89e;
}

.service-options {
  border: none;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--orange);
  text-decoration: underline;
}

.privacy-label {
  margin-top: 1rem;
  font-size: 0.82rem;
}

.contact-form .btn-full {
  margin: 0.5rem 0 1rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-light);
}

.form-success-page {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.form-success-page h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1rem;
}

.form-success-page p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.form-error-page h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo {
    width: min(100%, 340px);
  }

  .logo-showcase,
  .logo-showcase--large {
    min-height: 200px;
    padding: 2rem 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .philosophy-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .philosophy-actions {
    justify-content: center;
  }

  .philosophy-visual {
    order: -1;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .logo img {
    height: 40px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav .nav-link,
  .header-nav .phone-link {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }

  .header-nav .btn {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1rem;
  }

  .header-inner {
    position: relative;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-card {
    padding: 1.25rem 0.5rem;
  }

  .cta-actions,
  .philosophy-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn,
  .philosophy-actions .btn,
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .phone-link {
    white-space: normal;
    word-break: break-all;
  }
}

@media (max-width: 380px) {
  .container {
    width: 94%;
  }

  .logo img {
    height: 38px;
  }
}
