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

:root {
  --gold: #c6a97d;
  --gold-lt: #e8d9c4;
  --rose: #f7eff0;
  --dark: #2c2322;
  --mid: #6b5c5a;
  --white: #fffdfb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--dark);
  background: var(--white);
  font-weight: 300;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-lt);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(198, 169, 125, .15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .2s;
}

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

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 2px;
}

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

.nav-toggle {
  display: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--dark);
}

#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

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

.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all .25s;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--dark);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.hero-img .photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0e6e8 0%, #e8d5c4 50%, #d4c5b0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-img .photo-placeholder i {
  font-size: 2.5rem;
  opacity: .5;
}

.hero-img .photo-placeholder p {
  opacity: .7;
}

.hero-img .photo-placeholder .photo-hint {
  font-size: .65rem;
  opacity: .5;
}

.deco-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

section {
  padding: 100px 8%;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--mid);
  max-width: 560px;
}

#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--rose);
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 12px;
}

.about-photos img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.about-photos .ph {
  background: linear-gradient(135deg, #e8d5c4, #c9b5a0);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a08070;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  flex-direction: column;
  gap: .4rem;
}

.about-photos .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photos .ph i {
  font-size: 1.8rem;
  opacity: .45;
}

.about-photos .ph:first-child {
  grid-row: span 2;
}

.about-text .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  margin: 1.5rem 0;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  line-height: 1.6;
}

.about-text p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1rem;
}

#services {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-sub {
  margin: 0 auto;
}

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

.service-card {
  background: var(--rose);
  padding: 3rem 2.2rem;
  transition: background .25s, transform .25s;
}

.service-card:hover {
  background: var(--gold-lt);
  transform: translateY(-4px);
}

.service-card .icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: .7rem;
}

.service-card p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--mid);
}

#portfolio {
  background: var(--dark);
  color: #fff;
}

#portfolio .section-tag {
  color: var(--gold);
}

#portfolio .section-title {
  color: #fff;
}

#portfolio .section-sub {
  color: rgba(255, 255, 255, .55);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 200px;
  gap: 10px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.portfolio-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-item .ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a2e2b, #5a4840);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(198, 169, 125, .5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .3s;
}

.portfolio-item .ph i {
  font-size: 2.2rem;
}

.portfolio-item:hover .ph {
  background: linear-gradient(135deg, #4a3e3b, #6a5850);
}

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .3s;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #fff;
}

#testimonials {
  background: var(--rose);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-footer {
  text-align: center;
  margin-top: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 3px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold-lt);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card p {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 500;
}

.author-info strong {
  font-size: .9rem;
  font-weight: 500;
  display: block;
}

.author-info span {
  font-size: .78rem;
  color: var(--gold);
}

.stars {
  color: var(--gold);
  font-size: .75rem;
  margin-bottom: .8rem;
}

#contact {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info .section-sub {
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .9rem;
  color: var(--mid);
}

.contact-item i {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--mid);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: .8rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 1rem;
  transition: all .25s;
}

.social-link:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gold-lt);
  background: var(--rose);
  padding: .8rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: var(--dark);
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
}

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

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

.btn-submit {
  border: none;
  cursor: pointer;
  justify-content: center;
}

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .45);
  text-align: center;
  padding: 2.5rem 8%;
  font-size: .8rem;
  line-height: 2;
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .1em;
  margin-bottom: .5rem;
}

footer .footer-logo span {
  color: var(--gold);
}

footer .footer-copyright {
  margin-top: 1rem;
  font-size: .72rem;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  animation: pulse 2.5s infinite;
  transition: transform .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, .7);
  }
}

.divider {
  text-align: center;
  padding: 2rem 0 0;
  color: var(--gold);
  letter-spacing: .4em;
  font-size: .7rem;
}

@media (max-width: 900px) {

  #hero,
  #about,
  #contact {
    grid-template-columns: 1fr;
  }

  #hero {
    min-height: auto;
  }

  .hero-img {
    height: 60vw;
    min-height: 280px;
  }

  .hero-text {
    padding: 40px 6%;
  }

  .about-photos {
    order: -1;
    grid-template-rows: 200px 140px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .portfolio-item:first-child {
    grid-column: span 2;
    height: 260px;
  }

  #contact {
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 1rem 5%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1.5rem 6%;
    border-bottom: 1px solid var(--gold-lt);
    gap: 1.2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 560px) {
  section {
    padding: 70px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item:first-child {
    grid-column: span 1;
  }
}